Skip to content

Commit

Permalink
chore: Add .github/workflows/test.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
teihenn committed Nov 15, 2024
1 parent 03a7ada commit 27f44f6
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Python Tests

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Install uv
run: |
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Run Tests
run: |
PYTHONPATH=. uv run --python 3.13 python -m unittest discover -v

0 comments on commit 27f44f6

Please sign in to comment.