Delete test-3.11.yaml

This commit is contained in:
Gabriel Augendre 2022-11-01 08:18:50 +01:00 committed by GitHub
parent 61dcd0a7d2
commit d17a5bba70
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,29 +0,0 @@
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/