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