systemd does not support the same log level strings as bosh-dns #389
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: go | |
on: | |
push: | |
pull_request: | |
jobs: | |
lint_bosh_dns: | |
strategy: | |
matrix: | |
os: [macos-latest, windows-2019, ubuntu-latest] | |
name: lint_bosh_dns | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: src/bosh-dns/go.mod | |
# TODO: uncomment once golangci-lint on windows-2019 respeects `exclude-dirs:` | |
# - uses: golangci/golangci-lint-action@v6 | |
# with: | |
# args: --config ../../.golangci.yml | |
# working-directory: src/bosh-dns/ | |
# if: ${{ matrix.os == 'windows-2019' }} | |
- uses: golangci/golangci-lint-action@v6 | |
if: ${{ matrix.os != 'windows-2019' }} | |
with: | |
args: --config ../../.golangci.yml --enable goimports | |
working-directory: src/bosh-dns/ | |
lint_test_recursor: | |
strategy: | |
matrix: | |
os: [macos-latest, windows-2019, ubuntu-latest] | |
name: lint_test_recursor | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: src/bosh-dns/acceptance_tests/dns-acceptance-release/src/test-recursor/go.mod | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
args: --config ../../../../../../.golangci.yml | |
working-directory: src/bosh-dns/acceptance_tests/dns-acceptance-release/src/test-recursor | |
if: ${{ matrix.os == 'windows-2019' }} | |
- uses: golangci/golangci-lint-action@v6 | |
if: ${{ matrix.os != 'windows-2019' }} | |
with: | |
args: --config ../../../../../../.golangci.yml --enable goimports | |
working-directory: src/bosh-dns/acceptance_tests/dns-acceptance-release/src/test-recursor | |
lint_debug: | |
strategy: | |
matrix: | |
os: [macos-latest, windows-2019, ubuntu-latest] | |
name: lint_debug | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: src/debug/go.mod | |
- uses: golangci/golangci-lint-action@v6 | |
with: | |
args: --config ../../.golangci.yml | |
working-directory: src/debug/ | |
if: ${{ matrix.os == 'windows-2019' }} | |
- uses: golangci/golangci-lint-action@v6 | |
if: ${{ matrix.os != 'windows-2019' }} | |
with: | |
args: --config ../../.golangci.yml --enable goimports | |
working-directory: src/debug/ |