Skip to content

Bump actions/checkout from 4.2.1 to 4.2.2 #49

Bump actions/checkout from 4.2.1 to 4.2.2

Bump actions/checkout from 4.2.1 to 4.2.2 #49

Workflow file for this run

on:
push:
branches:
- master
pull_request:
name: Test
jobs:
lint:
name: runner / golangci-lint
runs-on: ubuntu-latest
steps:
- name: Check out
uses: actions/[email protected]
- name: golangci-lint
uses: reviewdog/[email protected]
test:
strategy:
matrix:
go-version: [1.20.x, 1.21.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Check out
uses: actions/[email protected]
- name: go test
run: go test -v -race -coverprofile=profile.cov ./...
#- name: Send coverage
# uses: shogo82148/[email protected]
# with:
# path-to-profile: profile.cov