summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-06-20 11:37:05 -0600
committermo khan <mo@mokhan.ca>2025-06-20 11:37:05 -0600
commit69c3c10043418a92f969671f9e7bc3c08e79cb91 (patch)
treed9b56f2df2f6df25310fc5c230722d3d5e34109c
parent3f3bb7ae388995e4b8fa500e0668b99346861a4d (diff)
chore: install CI configuration
-rw-r--r--.github/workflows/ci.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
new file mode 100644
index 0000000..38e1917
--- /dev/null
+++ b/.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
+