Bump jinja2 from 3.1.4 to 3.1.6 in /docs #113
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: | |
| push: | |
| branches: [ develop ] | |
| pull_request: | |
| branches: [ develop ] | |
| jobs: | |
| tests: | |
| name: "Python ${{ matrix.python-version }}" | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [macos-latest, ubuntu-latest] | |
| python-version: ["3.8", "3.9", "3.10", "3.11"] | |
| steps: | |
| - uses: "actions/checkout@v3" | |
| with: | |
| fetch-depth: 0 | |
| # Setup env | |
| - uses: "actions/setup-python@v3" | |
| with: | |
| python-version: "${{ matrix.python-version }}" | |
| - name: "Install dependencies on ${{ matrix.os }} for Python ${{ matrix.python-version }}" | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install . | |
| - name: "Generate coverage report on ${{ matrix.os }} for Python ${{ matrix.python-version }}" | |
| run: | | |
| pip install pytest pytest-cov | |
| pytest --cov=graphbin --cov-report=xml --cov-append | |
| - name: Upload coverage to Codecov | |
| uses: codecov/codecov-action@v3 | |
| with: | |
| token: ${{ secrets.CODECOV_TOKEN }} | |
| file: coverage.xml | |
| fail_ci_if_error: true |