Run tests on pull requests
This commit is contained in:
parent
1e3297f1e0
commit
bda86f13dd
1 changed files with 25 additions and 0 deletions
25
.github/workflows/test.yaml
vendored
Normal file
25
.github/workflows/test.yaml
vendored
Normal file
|
@ -0,0 +1,25 @@
|
|||
name: Test
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [ "master" ]
|
||||
|
||||
jobs:
|
||||
tests:
|
||||
name: Python tests
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Install poetry
|
||||
run: pipx install poetry==1.1.15
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: '3.10'
|
||||
cache: poetry
|
||||
- name: Install dependencies
|
||||
run: poetry install
|
||||
- name: Test
|
||||
run: poetry run pytest --cov=. --cov-branch --cov-report term-missing:skip-covered
|
||||
working-directory: ./src/
|
Reference in a new issue