From 22c47cc82f17e47abbd90e76a4da8e0020bad380 Mon Sep 17 00:00:00 2001 From: Guillaume Binet Date: Mon, 13 May 2024 13:31:56 -0400 Subject: [PATCH] Setup github workflow attempt --- .github/workflows/general.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/general.yml diff --git a/.github/workflows/general.yml b/.github/workflows/general.yml new file mode 100644 index 000000000..fbffd211a --- /dev/null +++ b/.github/workflows/general.yml @@ -0,0 +1,22 @@ +name: General + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +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