Skip to content

Issue and PR-Template #7

Issue and PR-Template

Issue and PR-Template #7

Workflow file for this run

name: CI
on:
push:
branches: [ "validation", "develop" ]
pull_request:
branches: [ "validation", "develop" ]
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install -r tests/requirements.txt
- name: Run test suite
run: |
python -m pytest --latest=1
- name: Archive report
uses: actions/upload-artifact@v3
if: always()
with:
name: errors-report
path: tests/reports