Skip to content

Bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 #78

Bump golangci/golangci-lint-action from 6.1.0 to 6.1.1

Bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 #78

Workflow file for this run

# Copyright 2024 Hardfin, Inc.
#
# 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
#
# https://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: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
env:
GO_LATEST: "1.22.1"
jobs:
go-test:
runs-on:
- ubuntu-22.04
strategy:
matrix:
go-version:
- "1.21.8"
- "go-latest"
timeout-minutes: 5
steps:
- name: Checkout 🛎
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- name: Install Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
with:
go-version: ${{ matrix.go-version == 'go-latest' && env.GO_LATEST || matrix.go-version }}
- name: Go test
run: |
go test -race -covermode=atomic -coverprofile=coverage.out ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
with:
version: v1.56.1
skip-cache: "true"
args: "--verbose --timeout=2m"
- name: Upload coverage reports to Codecov
if: ${{ matrix.go-version == 'go-latest' }}
uses: codecov/codecov-action@e28ff129e5465c2c0dcc6f003fc735cb6ae0c673 # v4.5.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: hardfinhq/go-date