Skip to content

Add a GitHub Action to run basic tests #1

Add a GitHub Action to run basic tests

Add a GitHub Action to run basic tests #1

Workflow file for this run

name: Test Omniwatch
on: [push]
jobs:
test:
name: Test Omniwatch integration
runs-on: ubuntu:22.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
- name: Install pytest
run: sudo apt-get install -y python3-pytest
- name: Start containerized environment
run: docker compose -f test/docker/slurm/compose.yaml up -d --wait
- name: Run tests
run: pytest-3 -v test