Move tag increment to strategy package #10
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
on: push | |
env: | |
GO_VERSION_FILE: "go.mod" | |
CHECK_LATEST: true | |
jobs: | |
test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v4 | |
- | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: ${{ env.GO_VERSION_FILE }} | |
check-latest: ${{ env.CHECK_LATEST }} | |
- | |
name: Pull dependencies | |
run: go mod vendor | |
- | |
name: Linter | |
run: make lint | |
- | |
name: Unit tests | |
run: make test |