Skip to content

Commit

Permalink
Add a GitHub Action to run basic tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jordap committed Jun 26, 2024
1 parent d31c67c commit 2f9e9da
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
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

0 comments on commit 2f9e9da

Please sign in to comment.