From 6dcc7b4ffa67d540a9a3d890f35d3bb51c4f3bf2 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Fri, 23 Apr 2021 20:09:41 -0700 Subject: chore(actions): Check for compilation errors on push --- .github/workflows/rust.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/rust.yml (limited to '.github/workflows') diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml new file mode 100644 index 0000000..40ad2b0 --- /dev/null +++ b/.github/workflows/rust.yml @@ -0,0 +1,17 @@ +name: Rust ✅ + +on: + push: + branches: [ develop ] + pull_request: + branches: [ develop ] + +env: + CARGO_TERM_COLOR: always + +jobs: + check: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - run: cargo check -- cgit v1.2.3