From a845f2bb0278d809a433e864cfc26a464b5cc90f Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Mon, 4 Sep 2023 16:25:51 -0400 Subject: [PATCH] added workflow --- .github/workflows/rust.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..855eb18 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,18 @@ +name: Rust + +on: [push] + +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