commit 032be5169b408b2913d7ea182df464bacad8575b parent f5edde771e1dc32f04963ec870d66e31ce7825b5 Author: Asher Morgan <59518073+ashermorgan@users.noreply.github.com> Date: Tue, 25 Jun 2024 14:43:12 -0700 Setup GitHub Actions Diffstat:
| A | .github/workflows/build-and-test.yml | | | 21 | +++++++++++++++++++++ |
1 file changed, 21 insertions(+), 0 deletions(-)
diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml @@ -0,0 +1,21 @@ +name: Cargo Build and Test + +on: + push: + pull_request: + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v4 + + - name: Build + run: cargo build --verbose + + - name: Run tests + run: cargo test --verbose