From 000000203eeb5bbb5a2cdffa0381e76ad712855b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Jane=C5=BEi=C4=8D?= Date: Fri, 1 Dec 2023 06:35:31 +0100 Subject: [PATCH] feat: remove github ci due to nightly features --- .github/workflows/ci.yml | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 00123ca..000000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Check - -on: push - -env: - CARGO_TERM_COLOR: always - -jobs: - check: - runs-on: ubuntu-latest - name: Check - steps: - - uses: actions/checkout@v3 - - name: cargo check - run: cargo check - test: - runs-on: ubuntu-latest - name: Test - steps: - - uses: actions/checkout@v3 - - name: cargo test - run: cargo test - clippy: - runs-on: ubuntu-latest - name: Lint (clippy) - steps: - - uses: actions/checkout@v3 - - name: cargo clippy - run: cargo clippy -- -D warnings - fmt: - runs-on: ubuntu-latest - name: Format - steps: - - uses: actions/checkout@v3 - - name: cargo fmt - run: cargo fmt --check