Upgrade from Construct 2.8.8 to 2.10.68 (All tests pass on 3.10) #63
Workflow file for this run
This file contains 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: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install poetry | |
uses: abatilo/actions-poetry@v2.3.0 | |
with: | |
poetry-version: 1.4.1 | |
- name: Install project | |
run: poetry install | |
- name: Run tests | |
run: poetry run pytest tests/ | |
- name: Run coverage | |
run: | | |
poetry run coverage run -m pytest tests/ | |
poetry run coverage xml | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 | |
with: | |
name: "Python-${{ matrix.python-version }}" | |
fail_ci_if_error: true |