diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29384e85a..116ae30dc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: CI on: push: - branches: [ main ] + branches: [ debug ] pull_request: branches: [ main ] @@ -16,14 +16,6 @@ jobs: with: submodules: recursive - - name: Super-Linter - uses: github/super-linter@v3 - env: - VALIDATE_ALL_CODEBASE: false - DEFAULT_BRANCH: main - VALIDATE_RUST_2018: true - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - - uses: cachix/install-nix-action@v13 with: nix_path: nixpkgs=channel:nixos-unstable @@ -32,6 +24,6 @@ jobs: env: RUST_BACKTRACE: full run: nix-shell --run "rustc --version --verbose && cargo clippy" - + - name: Test run: nix-shell --run "cargo test --all-features"