Skip to content

Commit

Permalink
ci: fix common test
Browse files Browse the repository at this point in the history
  • Loading branch information
osoken committed May 4, 2024
1 parent ad1dcb4 commit f26894a
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ permissions:
packages: read

jobs:
test-check:
common-test-check:
runs-on: ubuntu-latest
services:
postgres:
Expand All @@ -22,15 +22,16 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup python 3.12
- name: Setup python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.12
python-version: 3.10
cache: pip
cache-dependency-path: pyproject.toml
cache-dependency-path: common/pyproject.toml
- name: dependency install
run: pip install -e ".[dev]"
run: pip install -e "./common[dev]"
- name: copy env
run: cp .env.example .env
run: cp .env.example common/.env
- name: test
working-directory: common
run: tox

0 comments on commit f26894a

Please sign in to comment.