A hotfix to 3.0.1 for the release flow that was broken. For all other information see 3.0.0. #718
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
name: Tests | |
on: [push, pull_request, pull_request_target, release] | |
jobs: | |
Test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
cache: "pip" | |
- run: pip install -e ".[dev]" | |
- run: pytest --cov --cov-append | |
- uses: coverallsapp/github-action@v2 | |
with: | |
file: .coverage |