From 59c3ca677ddec0fb376997ada5e455111965f1b2 Mon Sep 17 00:00:00 2001 From: Jake Ratcliffe Date: Sun, 18 Aug 2024 14:15:13 +0100 Subject: [PATCH] Create ci-development.yml (#1) --- .github/workflows/ci-development.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/ci-development.yml diff --git a/.github/workflows/ci-development.yml b/.github/workflows/ci-development.yml new file mode 100644 index 0000000..2951ec0 --- /dev/null +++ b/.github/workflows/ci-development.yml @@ -0,0 +1,22 @@ +name: Rust + +on: + push: + branches: [ "development" ] + pull_request: + branches: [ "development" ] + +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