diff --git a/.github/workflows/test-e2e.yaml b/.github/workflows/test-e2e.yaml deleted file mode 100644 index 2c28b5de..00000000 --- a/.github/workflows/test-e2e.yaml +++ /dev/null @@ -1,25 +0,0 @@ -name: test-e2e - -on: - pull_request: - branches: - - main - -jobs: - test: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - - name: Setup Go - uses: actions/setup-go@v2 - with: - go-version: "1.21" - - - uses: actions/cache@v2 - with: - path: ./bin - key: ${{ runner.os }}-bin - - - name: Run test-e2e - run: make test-e2e \ No newline at end of file diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 24b4908e..74d303d5 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -6,31 +6,19 @@ on: - main jobs: test: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Setup Go - uses: actions/setup-go@v2 + uses: actions/setup-go@v4 with: go-version: "1.21" - - uses: actions/cache@v2 - with: - path: ~/go/pkg/mod - key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} - restore-keys: ${{ runner.os }}-go- - - - uses: actions/cache@v2 - with: - path: ./testbin - key: ${{ runner.os }}-testbin - - - uses: actions/cache@v2 - with: - path: ./bin - key: ${{ runner.os }}-bin - - name: Run tests run: | make test + + - name: Run e2e tests + run: | + make test-e2e \ No newline at end of file