fix: Rename field in info #70
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 and Release | |
on: | |
push: | |
branches: | |
- 'develop' | |
- 'main' | |
paths: | |
- '**.go' | |
- '**.mod' | |
- '**.sum' | |
- 'Dockerfile' | |
pull_request: | |
branches: | |
- 'develop' | |
- 'main' | |
paths: | |
- '**.go' | |
- '**.mod' | |
- '**.sum' | |
- 'Dockerfile' | |
env: | |
GO_VERSION: 1.21 | |
jobs: | |
# build workflow | |
Test: | |
needs: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: set up go ${{env.GO_VERSION}} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{env.GO_VERSION}} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: Run build | |
run: go build -v ./... | |
- name: Test | |
run: go test -v ./... | |
Lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: set up go ${{env.GO_VERSION}} | |
uses: actions/setup-go@v4 | |
with: | |
go-version: ${{env.GO_VERSION}} | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v3 | |
with: | |
args: --timeout 5m | |
Semantic-Release: | |
if: ${{ github.event_name == 'push' }} | |
needs: Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.SEMANTIC_TOKEN }} | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
- name: Setup package.json | |
run: echo '{"name":"semantic-release", "devDependencies":{"@semantic-release/changelog":"^6.0.1","@semantic-release/exec":"^6.0.3","@semantic-release/git":"^10.0.1","@semantic-release/release-notes-generator":"^10.0.3","conventional-changelog-conventionalcommits":"^5.0.0","semantic-release":"^21.0.2"}}' > package.json | |
- name: Install dependencies | |
run: npm install | |
- name: Release | |
run: npx semantic-release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
GH_TOKEN: ${{ secrets.SEMANTIC_TOKEN }} |