summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/rust.yml25
1 files changed, 0 insertions, 25 deletions
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
deleted file mode 100644
index 5c14c17..0000000
--- a/.github/workflows/rust.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-name: Build
-
-on:
- push:
- branches: [ main ]
- pull_request:
- branches: [ main ]
-
-env:
- CARGO_TERM_COLOR: always
-
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@master
- - uses: actions-rs/toolchain@v1
- with:
- toolchain: nightly
- components: clippy
- override: true
- - name: Build
- run: cargo build --verbose
- - name: Run tests
- run: cargo test --verbose