Skip to content

Commit

Permalink
Add simple GHA workflow for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stevejalim committed Nov 19, 2023
1 parent 2a8f18e commit c65d2a8
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Unit tests
on:
push:
branches:
- 'master'
pull_request:
workflow_dispatch:

jobs:
test-python:
runs-on: ubuntu-latest # For consistency with above
steps:
- uses: actions/checkout@v3
- name: "Run Python tests (on Docker)"
run: |
make clean-ci
make build-ci
make test-ci

0 comments on commit c65d2a8

Please sign in to comment.