From e36f141f0bf615b322ae60a459e33deb4232cd02 Mon Sep 17 00:00:00 2001 From: Trisha <46720122+virtusense-trisha@users.noreply.github.com> Date: Tue, 5 Oct 2021 10:08:22 -0500 Subject: [PATCH 1/3] Create rust.yml --- .github/workflows/rust.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 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..7ae98f3 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + +env: + CARGO_TERM_COLOR: always + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Build + run: cargo build --verbose + - name: Run tests + run: cargo test --verbose From cb0c522b4df2cd84a6f29efe79e1057f00240e8d Mon Sep 17 00:00:00 2001 From: Trisha <46720122+virtusense-trisha@users.noreply.github.com> Date: Tue, 5 Oct 2021 10:11:22 -0500 Subject: [PATCH 2/3] Update rust.yml --- .github/workflows/rust.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 7ae98f3..3b8f34e 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -5,6 +5,8 @@ on: branches: [ main ] pull_request: branches: [ main ] + workflow_dispatch: + inputs: "" env: CARGO_TERM_COLOR: always From 1cc6acf86a01a3423950fd91bdd0e3bfe20c2304 Mon Sep 17 00:00:00 2001 From: Trisha <46720122+virtusense-trisha@users.noreply.github.com> Date: Tue, 5 Oct 2021 10:20:37 -0500 Subject: [PATCH 3/3] Update rust.yml --- .github/workflows/rust.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 3b8f34e..72747f6 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -6,7 +6,6 @@ on: pull_request: branches: [ main ] workflow_dispatch: - inputs: "" env: CARGO_TERM_COLOR: always