Feature - Config Loading Improvements #73
Workflow file for this run
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: 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 |