summaryrefslogtreecommitdiff
path: root/.github/workflows/rust.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/rust.yml')
-rw-r--r--.github/workflows/rust.yml36
1 files changed, 0 insertions, 36 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
deleted file mode 100644
index db77d154..00000000
--- a/.github/workflows/rust.yml
+++ /dev/null
@@ -1,36 +0,0 @@
-name: Continuous integration
-
-on:
- push:
- branches: [main]
- pull_request:
- branches: [main]
-
-env:
- CARGO_TERM_COLOR: always
-
-jobs:
- ci:
- runs-on: ubuntu-latest
- strategy:
- matrix:
- rust: [stable]
-
- steps:
- - name: Checkout source code
- uses: actions/checkout@v2
-
- - name: Dependency cache
- uses: Swatinem/rust-cache@v1
-
- - name: Build
- uses: actions-rs/cargo@v1
- with:
- command: build
- args: --all
-
- - name: Test
- uses: actions-rs/cargo@v1
- with:
- command: test
- args: --all