From 2c3e4ac2632a396e440ee14299c19a3279798638 Mon Sep 17 00:00:00 2001 From: AvicennaJr Date: Sun, 15 Oct 2023 23:13:17 +0300 Subject: [PATCH] remove build from tests --- .github/workflows/tests.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 22b5ecd..7f6c282 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -2,7 +2,7 @@ name: Go on: push: - branches: [ main ] + branches: [ main, dev ] jobs: @@ -10,24 +10,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - with: - fetch-depth: 0 - name: Set up Go uses: actions/setup-go@v3 with: go-version: 1.21 - id: go - name: Test run: go mod tidy && make test - - - name: Run GoReleaser - uses: goreleaser/goreleaser-action@v5 - with: - distribution: goreleaser - version: latest - args: release --clean - env: - GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}