From f3a74f1d4d8b0c3b66630c33b87331f639546b72 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kacper=20=C5=BBuk=20=28Neti=29?= <117277751+kacperzuk-neti@users.noreply.github.com> Date: Tue, 17 Sep 2024 20:01:13 +0200 Subject: [PATCH] Update code-check.yml --- .github/workflows/code-check.yml | 33 -------------------------------- 1 file changed, 33 deletions(-) diff --git a/.github/workflows/code-check.yml b/.github/workflows/code-check.yml index 50e9a09..68c6004 100644 --- a/.github/workflows/code-check.yml +++ b/.github/workflows/code-check.yml @@ -39,36 +39,3 @@ jobs: - name: Run Clippy run: cargo clippy - - tests: - runs-on: ubuntu-latest - needs: format_and_lint - environment: staging-fidl - - steps: - - name: Checkout code - uses: actions/checkout@v4 - - - name: Cache Cargo registry - uses: actions/cache@v4 - with: - path: | - ~/.cargo/registry - ~/.cargo/git - key: ${{ runner.os }}-cargo-registry-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-registry- - - - name: Cache Cargo build - uses: actions/cache@v4 - with: - path: target - key: ${{ runner.os }}-cargo-build-${{ hashFiles('**/Cargo.lock') }} - restore-keys: | - ${{ runner.os }}-cargo-build- - - - name: Run tests - env: - GH_PRIVATE_KEY: ${{ secrets.GH_PRIVATE_KEY }} - DB_URL: ${{secrets.DB_URL}} - run: cargo test -- --nocapture \ No newline at end of file