diff --git a/.github/workflows/e2e-tests.yaml b/.github/workflows/e2e-tests.yaml deleted file mode 100644 index 9014d19c..00000000 --- a/.github/workflows/e2e-tests.yaml +++ /dev/null @@ -1,32 +0,0 @@ -name: E2E tests - -concurrency: - group: ${{ github.ref }}-${{ github.workflow }} - cancel-in-progress: true - -on: - push: - branches: - - main - merge_group: - workflow_dispatch: - -jobs: - tests: - runs-on: ubuntu-latest - steps: - - name: Checkout the source code - uses: actions/checkout@v3 - with: - submodules: true - - - name: Cache Crates - uses: actions/cache@v3 - with: - path: ~/.cargo - key: ${{ runner.os }}-rust-${{ hashFiles('rust-toolchain.toml') }} - restore-keys: | - ${{ runner.os }}-rust - - - name: E2E tests - run: make e2e-tests-with-setup-and-teardown