26 lines
459 B
YAML
26 lines
459 B
YAML
name: Integration Test
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
|
|
jobs:
|
|
integration-test:
|
|
runs-on: general
|
|
container:
|
|
image: "ghcr.io/catthehacker/ubuntu:js-24.04"
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
run: |
|
|
apt-get update
|
|
apt-get install -y python3-pytest python3-requests
|
|
|
|
- name: Run test
|
|
run: |
|
|
pytest run_test.py
|