Support for Python 3.11 (#197) #531
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: Run Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: Run Tests | |
runs-on: | |
group: fortuna | |
labels: fortuna_ubuntu-latest_32-core | |
strategy: | |
matrix: | |
# Select the Python versions to test against | |
python-version: ["3.9", "3.10", "3.11"] | |
steps: | |
- name: Check out the code | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
# Install Poetry | |
- name: Install Poetry | |
uses: snok/[email protected] | |
with: | |
version: 1.8.3 | |
# Configure Poetry to use the virtual environment in the project | |
- name: Setup Poetry | |
run: | | |
poetry config virtualenvs.in-project true | |
# Install the dependencies | |
- name: Install Package | |
run: | | |
poetry install --with test | |
# Run the unit tests and build the coverage report | |
- name: Run Tests | |
run: poetry run pytest --cov=fortuna --cov-report=term-missing --cov-report=xml |