summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/main.yml22
1 files changed, 0 insertions, 22 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
deleted file mode 100644
index 5d78c4e..0000000
--- a/.github/workflows/main.yml
+++ /dev/null
@@ -1,22 +0,0 @@
-on: [push, pull_request]
-
-jobs:
- ci:
- name: CI
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@master
- with:
- fetch-depth: 50
- - name: Install Rust Stable
- run: |
- rustc -vV
- rustup update stable
- rustup default stable
- rustc -vV
- - name: Run rustfmt
- run: cargo fmt -- --check
- - name: Run clippy
- run: cargo clippy -- -Dwarnings
- - name: Run tests
- run: cargo test --verbose