Skip to content

[pre-commit.ci] pre-commit-autoupdate #49

[pre-commit.ci] pre-commit-autoupdate

[pre-commit.ci] pre-commit-autoupdate #49

Workflow file for this run

name: Tests (pytest)
on:
pull_request:
branches:
- main
jobs:
build:
name: Ex1 (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ['3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Upgrade pip and install test dependencies
run: |
pip install --upgrade pip
pip install -e .[dev]
- name: Test with pytest
run: |
pytest --cov=topofileformats -x
- name: Determine coverage
run: |
coverage xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}