From d76f03d4103908dad0f277fbfdcd47726277fc63 Mon Sep 17 00:00:00 2001 From: Peter Hebden Date: Wed, 17 Aug 2022 20:18:56 +0100 Subject: [PATCH] Create ci.yml --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..b975fdf --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: CI + +on: + push: + branches: [ "master" ] + pull_request: + branches: [ "master" ] + +env: + CARGO_TERM_COLOR: always + +jobs: + check: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + - name: Check + run: cargo check