This commit is contained in:
parent
6da140413f
commit
53a1c271c6
1 changed files with 26 additions and 0 deletions
26
.forgejo/workflows/run_tests.yaml
Normal file
26
.forgejo/workflows/run_tests.yaml
Normal file
|
@ -0,0 +1,26 @@
|
|||
name: Test pipeline
|
||||
|
||||
on: [push]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: python:3
|
||||
steps:
|
||||
- name: Check out repository
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v5
|
||||
with:
|
||||
python-version: "3.13"
|
||||
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
pip install -r requirements-dev.txt
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
pytest
|
Loading…
Add table
Reference in a new issue