Merge pull request #164 from mazrean/dependabot/go_modules/golang.org… #324
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
name: CI | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- run: go build -o genorm ./cmd/genorm/ | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: genorm | |
path: ./genorm | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
# go generate用に、golangci-lintの前にGoのinstallをする | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- run: go generate ./... | |
- name: golangci-lint | |
uses: reviewdog/[email protected] | |
with: | |
go_version_file: go.mod | |
reporter: github-pr-review | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
fail_on_error: true | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- run: go generate ./... | |
- run: go test ./... -v -coverprofile=./coverage.txt -race -vet=off | |
- name: Upload coverage data | |
uses: codecov/[email protected] | |
with: | |
file: ./coverage.txt | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: coverage.txt | |
path: coverage.txt |