Skip to content

Bump github.com/FollowTheProcess/test from 0.13.0 to 0.14.0 #114

Bump github.com/FollowTheProcess/test from 0.13.0 to 0.14.0

Bump github.com/FollowTheProcess/test from 0.13.0 to 0.14.0 #114

Workflow file for this run

name: CI
on:
workflow_call:
pull_request:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions: {}
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
permissions:
contents: read
strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run Tests
run: go test -race ./...
cov:
name: CodeCov
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run Tests
run: go test -race -cover -covermode=atomic -coverprofile=./coverage.out ./...
- name: Coverage
uses: codecov/codecov-action@v4
with:
files: ./coverage.out
token: ${{ secrets.CODECOV_TOKEN }}
lint:
name: Lint
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Clean Mod Cache # See https://github.com/golangci/golangci-lint-action/issues/135
run: go clean -modcache
- name: Run Linting
uses: golangci/golangci-lint-action@v6
with:
version: latest