Skip to content

Commit

Permalink
GHA unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
tyler-romero committed Nov 8, 2024
1 parent 3be9cac commit 6de90a9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/unit-test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Unit Tests

on:
push:
branches: [ main ]
pull_request:

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'

- name: Install dependencies
run: |
make install-dev
- name: Run tests
run: |
make test

0 comments on commit 6de90a9

Please sign in to comment.