Add exec-mode to script files #4902
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: ci | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
linux-tests: | |
strategy: | |
matrix: | |
go: [ 1.21.x ] | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Go ${{ matrix.go }} | |
uses: actions/setup-go@v2.1.4 | |
with: | |
go-version: ${{ matrix.go }} | |
- name: Install fuse | |
run: sudo apt-get update && sudo apt-get install -y fuse3 libfuse-dev | |
- name: Build | |
run: | | |
CGO_ENABLED=0 go build ./... | |
go install ./tools/build_gcsfuse | |
build_gcsfuse . /tmp ${GITHUB_SHA} | |
- name: Test | |
run: CGO_ENABLED=0 go test -p 1 -count 1 -v -cover ./... | |
lint: | |
name: Lint | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: "1.21" | |
- name: checkout code | |
uses: actions/checkout@v3 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@032fa5c5e48499f06cf9d32c02149bfac1284239 | |
with: | |
args: -E=goimports --timeout 2m0s | |
only-new-issues: true | |