fix:change to this year #321
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: [workflow_dispatch, pull_request] | |
| env: | |
| SECRET_KEY: thisisasecret | |
| DATABASE_URL: postgresql://postgres:password@localhost:5432/postgres | |
| jobs: | |
| ci: | |
| runs-on: ubuntu-latest | |
| services: | |
| postgres: | |
| image: postgres:11-alpine | |
| ports: | |
| - 5432:5432 | |
| env: | |
| POSTGRES_USER: postgres | |
| POSTGRES_PASSWORD: password | |
| options: >- | |
| --health-cmd pg_isready | |
| --health-interval 10s | |
| --health-timeout 5s | |
| --health-retries 5 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install poetry | |
| run: pipx install poetry | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| cache: 'poetry' | |
| - name: Set up Python dependencies | |
| run: | | |
| poetry install | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20.x' | |
| - name: install via yarn2 | |
| run: | | |
| yarn install --immutable | |
| - name: Run ruff on src | |
| run: | | |
| poetry run ruff check src | |
| - name: Run DB migration for test | |
| run: | | |
| poetry run python src/manage.py migrate --verbosity 1 --noinput | |
| - name: Run Test | |
| run: | | |
| cd src | |
| poetry run pytest -n 2 --cov=. --cov-report=term-missing --cov-report=xml | |
| - name: Run Codecov action | |
| uses: codecov/codecov-action@v4 | |
| with: | |
| fail_ci_if_error: false | |
| files: ./src/coverage.xml | |
| verbose: true | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |