v2.0.0a5 #939
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
# This workflow will run the tests for the awpy Python library | |
name: build | |
on: | |
pull_request: | |
branches: [main] | |
paths: | |
- "awpy/**" | |
- "tests/**" | |
- "pyproject.toml" | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
python-version: ["3.9", "3.10", "3.11", "3.12"] | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout awpy library | |
uses: actions/checkout@v4 | |
- name: Cache test demos | |
id: cache-demos | |
uses: actions/cache@v4 | |
env: | |
cache-name: cache-demos | |
with: | |
# demos are downloaded to and looked for in `{repo}/tests` | |
path: ${{ github.workspace }}/tests/*.dem | |
# Invalidate the cache if the file containing the demo urls has changed. | |
key: cache-test-demos-${{ hashFiles('**/test_data.json') }} | |
# Care with this: If a demo changes but the name remains the same | |
# then this could cause issues. So do not do that! | |
restore-keys: cache-test-demos- | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
cache-dependency-path: | | |
poetry.lock | |
pyproject.toml | |
- name: Install Poetry | |
uses: abatilo/actions-poetry@v2 | |
- name: Setup a local virtual environment for poetry | |
shell: bash | |
run: | | |
poetry config virtualenvs.create true --local | |
poetry config virtualenvs.in-project true --local | |
- uses: actions/cache@v4 | |
name: Cache awpy dependencies | |
with: | |
path: ./.venv | |
key: venv-${{ matrix.os }}-${{ matrix.python-version }}-${{ hashFiles('poetry.lock') }} | |
- name: Install awpy | |
shell: bash | |
run: | | |
poetry install --no-interaction --no-cache | |
- name: Formatting + Lint | |
shell: bash | |
run: | | |
poetry run ruff check . --fix --exit-zero | |
poetry run ruff check . | |
# - name: Run pyright | |
# run: poetry run pyright | |
# - name: Thorough check with pylint | |
# run: poetry run pylint awpy | |
- name: Test | |
shell: bash | |
run: | | |
poetry run coverage run -m pytest --durations=10 -s --traceconfig --log-cli-level=DEBUG tests/ | |
poetry run coverage report -m | |
# - name: Archive code coverage results | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# name: code-coverage-report-${{ github.run_id }} | |
# path: htmlcov/ |