refactor: with golang.org/x/tools/go/ast/astutil
(#4)
#20
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" | |
- "feat/**" | |
- "refactor/**" | |
- "fix/**" | |
pull_request: | |
branches: | |
- "main" | |
workflow_dispatch: | |
permissions: write-all | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
goversion: | |
- "1.23.0" | |
- "stable" | |
steps: | |
- uses: Kesin11/actions-timeline@v2 | |
- uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.goversion }} | |
cache: true | |
cache-dependency-path: go.sum | |
- name: Setup xc | |
uses: joerdav/setup-xc@v0.0.3 | |
- name: Setup deps | |
run: | | |
xc setup:deps | |
- name: Setup GOEXPERIMENT | |
working-directory: ./example | |
run: | | |
xc setup:goenv | |
- name: Setup filtgen | |
working-directory: ./example | |
run: | | |
xc install:local | |
- name: Go Generate | |
working-directory: ./example | |
run: | | |
go generate ./... | |
git diff --exit-code | |
- name: Run generated code | |
working-directory: ./example | |
run: | | |
go build -o main && ./main | |
- name: golangci-lint with reviedog | |
uses: reviewdog/action-golangci-lint@v2 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
reporter: github-pr-review | |
level: warning | |
golangci_lint_flags: "--config=.golangci.yaml" |