This commit is contained in:
@@ -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
|
||||
Reference in New Issue
Block a user