Skip to content

Bump golangci/golangci-lint-action from 5 to 6 (#7) #45

Bump golangci/golangci-lint-action from 5 to 6 (#7)

Bump golangci/golangci-lint-action from 5 to 6 (#7) #45

Workflow file for this run

name: Lint and Test
on:
push:
branches:
- main
pull_request:
env:
GO_VERSION: "1.22.x"
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: lint
uses: golangci/golangci-lint-action@v6
test:
name: test
needs: lint
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Checkout code
uses: actions/checkout@v4
- name: Go cache
uses: actions/cache@v4
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ runner.os }}-go-${{ env.GO_VERSION }}-cache-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-${{ env.GO_VERSION }}-cache
- name: Install Task
uses: arduino/setup-task@v2
with:
version: 3.x
- name: Test
run: task test
- name: Submit coverage
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: ${{ env.GITHUB_REPOSITORY }}