This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
Run CI pipeline on macOS 13 #410
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: Checks | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: TrueBrain/actions-flake8@v2.2 | |
unittests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
python-version: ['3.9', '3.10', '3.11'] | |
os: [ubuntu-latest, macos-13] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python packages | |
run: | | |
pip install .[test] pytest-cov | |
- name: Test with pytest | |
run: | | |
pytest --cov=. --cov-report=xml | |
coverage report | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v3 |