Browse Source

Create ci.yml

Gary Guo 1 year ago
parent
commit
863a10ed9a
1 changed files with 22 additions and 0 deletions
  1. 22 0
      .github/workflows/ci.yml

+ 22 - 0
.github/workflows/ci.yml

@@ -0,0 +1,22 @@
+name: CI
+
+on:
+  push:
+    branches: [ "trunk" ]
+  pull_request:
+    branches: [ "trunk" ]
+
+env:
+  CARGO_TERM_COLOR: always
+
+jobs:
+  build:
+
+    runs-on: ubuntu-latest
+
+    steps:
+    - uses: actions/checkout@v3
+    - name: Build
+      run: cargo build --verbose
+    - name: Run tests
+      run: cargo test --verbose