feat: add github actions
This commit is contained in:
parent
256a442628
commit
a77d917f4c
2 changed files with 12 additions and 0 deletions
11
.github/workflows/test.yml
vendored
Normal file
11
.github/workflows/test.yml
vendored
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
name: GitHub Actions Demo
|
||||
on: [push]
|
||||
jobs:
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: astral-sh/setup-uv@v5
|
||||
- run: "uv venv"
|
||||
- run: "uv sync"
|
||||
- run: "uv run pytest"
|
||||
Loading…
Add table
Add a link
Reference in a new issue