summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2020-07-30 09:26:39 -0400
committerGitHub <noreply@github.com>2020-07-30 09:26:39 -0400
commitb8b85d08b29b74d08b2ea584124ed1ebfd7ca9df (patch)
tree2a2f312ecb280644f45db7d9bef1d983e9b51712
parent957906240a1f3b2869e38abe86dd5ce32be80d7b (diff)
Delete rust.yml
-rw-r--r--.github/workflows/rust.yml32
1 files changed, 0 insertions, 32 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
deleted file mode 100644
index fe19c40..0000000
--- a/.github/workflows/rust.yml
+++ /dev/null
@@ -1,32 +0,0 @@
-name: Rust
-
-on:
- push:
- branches: [master]
- pull_request:
- branches: [master]
-
-jobs:
- check:
- name: Rust ${{ matrix.rust }}
- runs-on: ubuntu-latest
- strategy:
- matrix:
- rust: [1.41.0, stable, beta]
- steps:
- - uses: actions/checkout@v2
- - name: Install minimal ${{ matrix.rust }} rust
- uses: actions-rs/toolchain@b2417cd
- with:
- override: true
- profile: minimal
- toolchain: ${{ matrix.rust }}
- - run: cargo -Vv && rustc -Vv
- - run: cargo check
- - run: cargo check --all-features
- - run: cargo clippy -- -Dwarnings -Dclippy::dbg_macro
- if: ${{ matrix.rust == 'stable' }}
- - run: cargo fmt --all -- --check
- if: ${{ matrix.rust == 'stable' }}
- - run: cargo test
- if: ${{ matrix.rust == 'stable' }}