fix: installation script with curl 8.8.0 #43
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: | |
- master | |
pull_request: | |
jobs: | |
check-code: | |
name: Check code | |
runs-on: ubuntu-latest | |
env: | |
GO_VERSION: stable | |
GOLANGCI_LINT_VERSION: v1.57.2 | |
CGO_ENABLED: 0 | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
# https://github.com/marketplace/actions/setup-go-environment | |
- name: Set up Go ${{ env.GO_VERSION }} | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
- name: Check and get dependencies | |
run: | | |
go mod tidy | |
git diff --exit-code go.mod | |
git diff --exit-code go.sum | |
# https://golangci-lint.run/usage/install#other-ci | |
- name: Install golangci-lint ${{ env.GOLANGCI_LINT_VERSION }} | |
run: | | |
curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin ${GOLANGCI_LINT_VERSION} | |
golangci-lint --version | |
- name: Make | |
run: make | |
check-local-install-script: | |
name: Installation script (local) | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Check installation script | |
run: cat ./install-misspell.sh | sh -s -- -d -b "./install-misspell" |