Skip to content

Tagging version 0.4.0 #79

Tagging version 0.4.0

Tagging version 0.4.0 #79

Workflow file for this run

name: Main
on:
push:
branches: ['*']
tags: ['v*']
pull_request:
branches: ['*']
env:
GO_TEST_COVERAGE_FILE_NAME: coverage.out
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: ['1.21.x', '1.22.x']
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
cache: true
cache-dependency-path: '**/go.sum' # Main module and tools submodule
- name: Download dependencies
run: make install-deps install-deps-dev
- name: Lint
run: make lint
- name: Vet
run: make vet
- name: Test
run: make test-with-coverage-profile
- name: Send code coverage to coveralls
if: ${{ matrix.go == '1.22.x' }}
continue-on-error: true
env:
COVERALLS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
go install github.com/mattn/goveralls@latest
goveralls -coverprofile="$GO_TEST_COVERAGE_FILE_NAME" -service=github