Skip to content

Commit

Permalink
Merge pull request #5 from square/add_ci
Browse files Browse the repository at this point in the history
adding in ci for protection
  • Loading branch information
michaelneale authored Aug 24, 2024
2 parents 1d0ab97 + 06dd45b commit 070f9a5
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -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'

0 comments on commit 070f9a5

Please sign in to comment.