Update README.md #15
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: 'Unit tests' | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.11' | |
cache: 'pip' | |
cache-dependency-path: | | |
**/pyproject.toml | |
- name: Install library and dependencies | |
shell: bash | |
run: | | |
python -m pip install --upgrade pip | |
pip install .[test] | |
- name: Pytest & coverage | |
shell: bash | |
run: | | |
pytest --cov-config=.coveragerc --cov=ground_slash src/tests/ | |
- name: Coverage badge | |
uses: tj-actions/coverage-badge-py@v2 | |
with: | |
output: coverage.svg | |
- name: Add badge to commit | |
uses: EndBug/add-and-commit@v9 # You can change this to use a specific version. | |
with: | |
add: 'coverage.svg' | |
commit: --signoff |