middleware_app/.forgejo/workflows/main.yml
continuist 08ad958e12
All checks were successful
Pipeline main branch / test (push) Successful in 53s
try to get this working
2025-03-29 22:42:12 -04:00

29 lines
560 B
YAML

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