Commit 69c3c10

mo khan <mo@mokhan.ca>
2025-06-20 17:37:05
chore: install CI configuration
1 parent 3f3bb7a
Changed files (1)
.github
workflows
.github/workflows/ci.yml
@@ -0,0 +1,16 @@
+name: CI
+on:
+  push:
+    branches: [ "main" ]
+  pull_request:
+    branches: [ "main" ]
+env:
+  CARGO_TERM_COLOR: always
+jobs:
+  build:
+    runs-on: ubuntu-latest
+    steps:
+    - uses: actions/checkout@v4
+    - run: cargo build --verbose
+    - run: cargo test --verbose
+