23 lines
346 B
YAML
23 lines
346 B
YAML
name: Integration Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
integration-test:
|
|
runs-on: general
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
pip3 install pytest requests
|
|
|
|
- name: Run tests
|
|
run: |
|
|
pytest run_test.py
|