diff --git a/.github/workflows/feature.yml b/.github/workflows/ci.yml similarity index 76% rename from .github/workflows/feature.yml rename to .github/workflows/ci.yml index 8eeb6a3..abc2eb0 100644 --- a/.github/workflows/feature.yml +++ b/.github/workflows/ci.yml @@ -1,9 +1,6 @@ name: feature -on: - push: - branches: - - 'feature/**' +on: pull_request jobs: setup: @@ -14,6 +11,6 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.16 + go-version: 1.19 - name: Test run: go test -v ./... diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa30ff1..6e9d21a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: - name: Setup Go uses: actions/setup-go@v2 with: - go-version: 1.16 + go-version: 1.19 - name: Test run: go test -v ./... - name: Run GoReleaser