Skip to content

build(deps): bump golangci/golangci-lint-action from 4 to 6 (#9) #35

build(deps): bump golangci/golangci-lint-action from 4 to 6 (#9)

build(deps): bump golangci/golangci-lint-action from 4 to 6 (#9) #35

Workflow file for this run

# Copyright 2023 Shaolong Chen <shaolong.chen@outlook.it>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Go
on:
push:
branches:
- main
paths:
- '**.go'
- 'go.mod'
- '.golangci.yml'
- '.github/workflows/go.yml'
pull_request:
paths:
- '**.go'
- 'go.mod'
- '.golangci.yml'
- '.github/workflows/go.yml'
env:
GOPROXY: "https://proxy.golang.org"
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=30m
- name: Check Go module tidiness
shell: bash
run: |
go mod tidy
STATUS=$(git status --porcelain go.mod go.sum)
if [ ! -z "$STATUS" ]; then
echo "Running go mod tidy modified go.mod and/or go.sum"
exit 1
fi
- name: Check code format
shell: bash
run: |
go install mvdan.cc/gofumpt@latest
go install github.com/rinchsan/gosimports/cmd/gosimports@latest
if [ $(gofumpt -extra -l . | wc -l) != 0 ]; then
echo 'Code not formated'
exit 1
fi
if [ $(gosimports -local go.chensl.me -l . | wc -l) != 0 ]; then
echo 'Code not formated'
exit 1
fi
test:
name: Test
strategy:
matrix:
go-version: [ 1.19.x, 1.20.x ]
platform: [ ubuntu-latest, macos-latest, windows-latest ]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: go test -shuffle=on -v -race -count=1 -coverprofile=coverage -covermode=atomic ./...
- name: Upload coverage report to Codecov
uses: codecov/codecov-action@v4
with:
file: ./coverage
flags: unittests