From 21aa0c8fae8e5975469fcf8447769f989c9d31cb Mon Sep 17 00:00:00 2001 From: An0nymous <45919207+0xalivecow@users.noreply.github.com> Date: Thu, 17 Oct 2024 22:52:24 +0200 Subject: [PATCH] Create dev_testing.yml --- .github/workflows/dev_testing.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/dev_testing.yml diff --git a/.github/workflows/dev_testing.yml b/.github/workflows/dev_testing.yml new file mode 100644 index 0000000..ad00172 --- /dev/null +++ b/.github/workflows/dev_testing.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "dev" ] + pull_request: + branches: [ "dev" ] + +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