25 lines
382 B
YAML
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
|