From 760e707c44ebe2196167964e79ec97c095258335 Mon Sep 17 00:00:00 2001 From: Seth Hoenig Date: Wed, 21 Aug 2024 18:09:37 +0000 Subject: [PATCH] ci: remove tests.yaml in favor of modern ci.yaml --- .github/workflows/tests.yaml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/tests.yaml diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml deleted file mode 100644 index 84dfb34..0000000 --- a/.github/workflows/tests.yaml +++ /dev/null @@ -1,16 +0,0 @@ -name: Run CI Tests -on: [push] -env: - GOBIN: /opt/bin - GO_VERSION: 1.22.6 -jobs: - run-tests: - runs-on: ubuntu-20.04 - steps: - - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 - - uses: magnetikonline/action-golang-cache@777394c89f8ed6fcf1649505277c46c1cd06494d # v4 - with: - go-version: ${{env.GO_VERSION}} - - name: Run Go Tests - run: | - make test