From 630cdf089b8049f7696fd6557e1211f89c5d183b Mon Sep 17 00:00:00 2001 From: Fernandez Ludovic Date: Wed, 9 Aug 2023 22:40:36 +0200 Subject: [PATCH] chore: unstable is now stable --- .github/workflows/go.yml | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 4e84a69..5a2986f 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -20,21 +20,5 @@ { name: "Test release", run: "make test-release" }, ], }, - unstable: { - name: "Build unstable", - "runs-on": "ubuntu-latest", - strategy: { matrix: { "go-version": [ "1.21"] } }, - steps: [ - { name: "Check out code into the Go module directory", uses: "actions/checkout@v3" }, - { - name: "Set up Go ${{ matrix.go-version }}", - uses: "actions/setup-go@v4", - with: { "go-version": "${{ matrix.go-version }}" }, - id: "go", - }, - { name: "Test", run: "make test" }, - { name: "Test release", run: "make test-release" }, - ], - }, }, }