From 68d1727cac8b6a7900c1c7e5e1265deb2aa3802d Mon Sep 17 00:00:00 2001 From: marisa Date: Wed, 23 Oct 2019 12:56:07 +0200 Subject: [PATCH] chore(ci): Remove GitHub actions for now --- .github/workflows/main.yml | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 .github/workflows/main.yml 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