Skip to content

Add @weisbartb as assignee in dependabot.yaml (#29) #67

Add @weisbartb as assignee in dependabot.yaml (#29)

Add @weisbartb as assignee in dependabot.yaml (#29) #67

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@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Install Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5.0.1
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@a4f60bb28d35aeee14e6880718e0c85ff1882e64 # v6.0.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@125fc84a9a348dbcf27191600683ec096ec9021c # v4.4.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: hardfinhq/go-date