From ad8440343ce01fc17d99ee260674e64828a1499d Mon Sep 17 00:00:00 2001 From: Vitor Floriano <107767584+vitorfloriano@users.noreply.github.com> Date: Thu, 14 May 2026 12:38:12 -0300 Subject: [PATCH] ci: remove test workflow This workflow has been migrated to pull-node-readiness-controller-test. --- .github/workflows/test.yml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml deleted file mode 100644 index c59d244..0000000 --- a/.github/workflows/test.yml +++ /dev/null @@ -1,29 +0,0 @@ -name: Tests - -on: - push: - pull_request: - -permissions: {} - -jobs: - test: - name: Run on Ubuntu - runs-on: ubuntu-latest - permissions: - contents: read - steps: - - name: Clone the code - uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 - with: - persist-credentials: false - - - name: Setup Go - uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # v5.6.0 - with: - go-version-file: go.mod - - - name: Running Tests - run: | - go mod tidy - make test