From 59c49a765fc4c3166ec602cf3be704a73d9f8aa5 Mon Sep 17 00:00:00 2001 From: Garrett-Weber <97564187+Garrett-Weber@users.noreply.github.com> Date: Tue, 30 Jan 2024 14:05:54 -0700 Subject: [PATCH] Create test workflow --- .github/workflows/rust.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/rust.yml diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..2c8a395 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,20 @@ +name: Rust + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + test: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Run tests + run: cargo test --verbose