-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #973 from mackerelio/refactor-wf
refactor: lint and test workflows
- Loading branch information
Showing
6 changed files
with
26 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.go text eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,57 +8,23 @@ on: | |
- v* | ||
|
||
jobs: | ||
test-linux: | ||
name: Test (Linux) | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Go 1.x | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.20.x | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v4 | ||
- uses: golangci/golangci-lint-action@v3 | ||
- run: make convention | ||
- run: make cover | ||
- run: test "$(gofmt -l . | wc -l)" = 0 | ||
- uses: shogo82148/actions-goveralls@v1 | ||
with: | ||
path-to-profile: .profile.cov | ||
|
||
test-windows: | ||
name: Test (Windows) | ||
# Please do not specify `windows-latest` | ||
# Build process is complex then need to check operation. | ||
runs-on: windows-2022 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.20.x | ||
|
||
- uses: golangci/golangci-lint-action@v3 | ||
with: | ||
args: --timeout 5m | ||
- uses: actions/cache@v3 | ||
with: | ||
path: | | ||
~/go/pkg/mod | ||
key: ${{ runner.os }}-go-${{ hashFiles('**\go.sum') }} | ||
restore-keys: | | ||
${{ runner.os }}-go- | ||
- name: Run Test | ||
run: | | ||
go test -short ./... | ||
shell: bash | ||
lint: | ||
uses: mackerelio/workflows/.github/workflows/[email protected] | ||
convention: | ||
uses: mackerelio/workflows/.github/workflows/[email protected] | ||
with: | ||
run: make convention | ||
test: | ||
uses: mackerelio/workflows/.github/workflows/[email protected] | ||
with: | ||
# Please do not specify `windows-latest` | ||
# Build process is complex then need to check operation. | ||
os-versions: '["ubuntu-latest", "windows-2022"]' | ||
|
||
build-linux: | ||
name: Build (Linux) | ||
runs-on: ubuntu-latest | ||
needs: test-linux | ||
needs: test | ||
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v') | ||
env: | ||
DEBIAN_FRONTEND: noninteractive | ||
|
@@ -95,7 +61,7 @@ jobs: | |
build-windows: | ||
name: Build (Windows) | ||
runs-on: windows-2022 | ||
needs: test-windows | ||
needs: test | ||
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v') | ||
strategy: | ||
matrix: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
!.circleci | ||
!.dependabot | ||
!.github | ||
!.gitattributes | ||
!.gitignore | ||
!.goxc.json | ||
!.travis.yml | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,9 @@ | ||
linters: | ||
enable: | ||
- gofmt | ||
linters-settings: | ||
gofmt: | ||
simplify: true | ||
issues: | ||
exclude-rules: | ||
- path: _test\.go | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters