Bugfix/traceaction compatibility (#32) #273
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: lint/test/build | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.4 | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Lint Go Code | |
run: | | |
make lint | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.4 | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Run Unit tests. | |
run: | | |
go test -short ./... | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
needs: [lint, test] | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: 1.21.4 | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Build | |
run: | | |
make all | |