diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index faeb770..8173dba 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ permissions: packages: read jobs: - test-check: + common-test-check: runs-on: ubuntu-latest services: postgres: @@ -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