mirror of
https://github.com/block/goose.git
synced 2026-07-09 16:09:22 +00:00
commit
070f9a55a4
1 changed files with 22 additions and 0 deletions
22
.github/workflows/ci.yaml
vendored
Normal file
22
.github/workflows/ci.yaml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Install UV
|
||||
run: curl -LsSf https://astral.sh/uv/install.sh | sh
|
||||
|
||||
- name: Source Cargo Environment
|
||||
run: source $HOME/.cargo/env
|
||||
|
||||
- name: Run tests
|
||||
run: |
|
||||
uv run pytest tests -m 'not integration'
|
||||
Loading…
Add table
Add a link
Reference in a new issue