Skip to content

Commit f77f2c3

Browse files
wassimkclaude
andcommitted
ci: add GitHub Actions workflow to run tests on PRs and main
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 253fcbc commit f77f2c3

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
test:
11+
runs-on: macos-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
15+
- name: Run tests
16+
run: cargo test

0 commit comments

Comments
 (0)