Skip to content

Commit

Permalink
Merge branch 'main' into scipgo
Browse files Browse the repository at this point in the history
  • Loading branch information
nicksnyder authored Oct 13, 2024
2 parents fd8c645 + a5d356a commit d1dc2a4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
name: Build
on:
- push
- pull_request
push:
branches:
- main
pull_request:

jobs:
build:
name: Build
runs-on: ubuntu-latest
if: (github.event_name == 'push' && github.ref == 'refs/heads/main') || github.event_name == 'pull_request'
steps:
- name: Install Go
uses: actions/setup-go@v5
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,8 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.21'
cache: false
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.55
version: v1.61
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.19.3'
go-version: stable
-
name: Release
uses: goreleaser/goreleaser-action@v6
Expand Down

0 comments on commit d1dc2a4

Please sign in to comment.