mirror of
https://github.com/Crocmagnon/charasheet.git
synced 2024-11-05 06:13:55 +01:00
Add test 3.11
This commit is contained in:
parent
02e58e6420
commit
15d813c48d
1 changed files with 29 additions and 0 deletions
29
.github/workflows/test-3.11.yaml
vendored
Normal file
29
.github/workflows/test-3.11.yaml
vendored
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
name: Test 3.11
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_call:
|
||||||
|
pull_request:
|
||||||
|
branches: [ "master" ]
|
||||||
|
push:
|
||||||
|
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.11'
|
||||||
|
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/
|
Loading…
Reference in a new issue