ACME設定がnilで上書きされてしまう不具合修正 #1579
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: Tests | |
on: [push, pull_request] | |
env: | |
GOPROXY: https://proxy.golang.org | |
jobs: | |
lint-text: | |
name: lint-text | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Unshallow | |
run: git fetch --prune --unshallow | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Setup tools | |
run: | | |
make tools | |
- name: make lint-text | |
run: | | |
make lint-text | |
lint-go: | |
name: lint-go | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Unshallow | |
run: git fetch --prune --unshallow | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Setup tools | |
run: | | |
make tools | |
- name: make lint-go | |
run: | | |
# Explicitly set GOROOT to avoid golangci-lint/issues/3107 | |
GOROOT=$(go env GOROOT) | |
export GOROOT | |
make lint-go | |
licenses-check: | |
name: licenses-check | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Unshallow | |
run: git fetch --prune --unshallow | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Setup tools | |
run: make tools | |
- name: make go-licenses-check | |
run: make go-licenses-check | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Unshallow | |
run: git fetch --prune --unshallow | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'go.mod' | |
- name: Setup tools | |
run: | | |
make tools | |
- name: make test | |
run: | | |
make test |