Bump sqlalchemy from 2.0.41 to 2.0.42 #947
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: Unit tests | |
| on: push | |
| jobs: | |
| container_job: | |
| name: Unit tests | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| python-version: [ 3.12.4 ] | |
| container: python:${{ matrix.python-version }}-slim | |
| steps: | |
| # Downloads a copy of the code in your repository before running CI tests | |
| - name: Check out repository code | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| apt update | |
| apt install -y curl git | |
| python -m pip install --upgrade pip | |
| pip install -e '.[dev]' | |
| python setup.py gen_code | |
| - name: Run Unit tests | |
| run: pytest --cov-report term-missing --cov-report=xml --cov=src tests | |
| - name: "Upload coverage to Codecov" | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| fail_ci_if_error: true | |
| files: ./coverage.xml | |
| verbose: true | |
| env: | |
| CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} |