Skip to content

Bump codecov/codecov-action from 4.1.1 to 4.2.0 #27

Bump codecov/codecov-action from 4.1.1 to 4.2.0

Bump codecov/codecov-action from 4.1.1 to 4.2.0 #27

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@9bb56186c3b09b4f86b1c65136769dd318469633 # v4.1.2
- name: Install Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
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@3cfe3a4abbb849e10058ce4af15d205b6da42804 # v4.0.0
with:
version: v1.56.1
args: "--verbose --timeout=2m"
- name: Upload coverage reports to Codecov
if: ${{ matrix.go-version == 'go-latest' }}
uses: codecov/codecov-action@7afa10ed9b269c561c2336fd862446844e0cbf71 # v4.2.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: hardfinhq/go-date