Update repository URLs and package names #19
Workflow file for this run
This file contains hidden or 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: Go | |
on: | |
push: | |
tags: | |
- v* | |
branches: | |
- main | |
paths: | |
- '**.go' | |
- ".goreleaser.yml" | |
- ".golangci.yml" | |
- ".dockerignore" | |
- "Makefile" | |
- "rules.mk" | |
- "go.*" | |
- ".github/workflows/go.yml" | |
pull_request: | |
paths: | |
- '**.go' | |
- ".goreleaser.yml" | |
- ".golangci.yml" | |
- ".dockerignore" | |
- "Makefile" | |
- "rules.mk" | |
- "go.*" | |
- ".github/workflows/go.yml" | |
jobs: | |
docker-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Build the Docker image | |
run: docker build . --file Dockerfile | |
goreleaser: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Set up Go | |
uses: actions/[email protected] | |
with: | |
go-version: 1.23.1 | |
- name: Cache Go modules | |
uses: actions/[email protected] | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go- | |
- name: Run GoReleaser (Dry Run) | |
uses: goreleaser/[email protected] | |
with: | |
version: latest | |
args: release --clean --snapshot --skip=publish | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
golangci-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- name: golangci-lint | |
uses: golangci/[email protected] | |
with: | |
version: v1.61.0 | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
args: --timeout=2m | |
only-new-issues: false | |
working-directory: . | |
tests-on-windows: | |
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors | |
runs-on: windows-latest | |
strategy: | |
matrix: | |
golang: | |
- 1.23.1 | |
steps: | |
- uses: actions/[email protected] | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: ${{ matrix.golang }} | |
- name: Run tests on Windows | |
run: make.exe unittest | |
continue-on-error: true | |
tests-on-mac: | |
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors | |
runs-on: macos-latest | |
strategy: | |
matrix: | |
golang: | |
- 1.23.1 | |
env: | |
OS: macos-latest | |
GOLANG: ${{ matrix.golang }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: ${{ matrix.golang }} | |
- uses: actions/[email protected] | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go-${{ matrix.golang }}- | |
- name: Compile the project | |
run: make go.install | |
- name: Run tests on Unix-like operating systems | |
run: make unittest | |
- name: Check go.mod and go.sum | |
run: | | |
go mod tidy -v | |
git --no-pager diff go.mod go.sum | |
git --no-pager diff --quiet go.mod go.sum | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
#token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.txt | |
flags: unittests | |
env_vars: OS,GOLANG | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
tests-on-linux: | |
needs: golangci-lint # run after golangci-lint action to not produce duplicated errors | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
golang: | |
- 1.23.1 | |
env: | |
OS: ubuntu-latest | |
GOLANG: ${{ matrix.golang }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: ${{ matrix.golang }} | |
- uses: actions/[email protected] | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go-${{ matrix.golang }}- | |
- name: Compile the project | |
run: make go.install | |
- name: Check go.mod and go.sum | |
run: | | |
go mod tidy -v | |
git --no-pager diff go.mod go.sum | |
git --no-pager diff --quiet go.mod go.sum | |
- name: Run tests on Unix-like operating systems | |
run: make unittest | |
- name: Upload coverage to Codecov | |
uses: codecov/[email protected] | |
with: | |
#token: ${{ secrets.CODECOV_TOKEN }} | |
file: ./coverage.txt | |
flags: unittests | |
env_vars: OS,GOLANG | |
name: codecov-umbrella | |
fail_ci_if_error: false | |
integration-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
golang: | |
- 1.23.1 | |
env: | |
OS: ubuntu-latest | |
GOLANG: ${{ matrix.golang }} | |
steps: | |
- uses: actions/[email protected] | |
- name: Install Go | |
uses: actions/[email protected] | |
with: | |
go-version: ${{ matrix.golang }} | |
- uses: actions/[email protected] | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ matrix.golang }}-${{ hashFiles('**/go.sum') }} | |
restore-keys: | | |
${{ runner.os }}-go-${{ matrix.golang }}- | |
- name: Compile the project | |
run: make go.install | |
- name: Run integration tests | |
run: make integration |