From 50b0f035cfff7849878c9ad10e1dfc0668cf5caf Mon Sep 17 00:00:00 2001 From: Evolution Date: Sat, 25 Nov 2023 23:11:26 -0500 Subject: [PATCH] add build.yml --- .github/workflows/build.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 00000000..d6155630 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "tanssi-branch" ] + pull_request: + branches: [ "tanssi-branch" ] + +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