summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authormarisa <mokou@posteo.de>2019-10-23 12:56:07 +0200
committermarisa <mokou@posteo.de>2019-10-23 12:56:07 +0200
commit68d1727cac8b6a7900c1c7e5e1265deb2aa3802d (patch)
tree6af6d98fa0609298f263b4b1ec39199d919c7e9f /.github/workflows
parent8a2e13b20ae076c07c246ca44fbec0caacfec87a (diff)
chore(ci): Remove GitHub actions for now
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