initial commit
Integration Test / integration-test (push) Waiting to run

This commit is contained in:
2025-07-29 16:17:23 -05:00
commit 8623db4c56
3 changed files with 184 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
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