middleware_app/.forgejo/workflows/main.yml
continuist 9e97310217
Some checks failed
Pipeline main branch / test (push) Failing after 6s
change python version
2025-03-29 21:49:23 -04:00

29 lines
555 B
YAML

name: Pipeline main branch
on:
push:
branches:
- main
jobs:
test:
runs-on: docker
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.13.2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8 pytest
pip install -r requirements.txt
- name: Run tests
run: |
pytest