This repository has been archived by the owner on Oct 21, 2024. It is now read-only.
Bump zipp from 3.17.0 to 3.19.1 #423
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.3 | |
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 |