Files
integration-test/.forgejo/workflows/integration-test.yaml
T
salcedo 8623db4c56
Integration Test / integration-test (push) Waiting to run
initial commit
2025-07-29 16:17:23 -05:00

25 lines
382 B
YAML

name: Integration Test
on:
push:
branches:
- master
jobs:
integration-test:
runs-on: generic
container:
image: python:3
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install dependencies
run: |
pip install pytest requests
- name: Run tests
run: |
pytest run_test.py