Skip to content

chore(deps): update actions/checkout digest to 44c2b7a (#64) #108

chore(deps): update actions/checkout digest to 44c2b7a (#64)

chore(deps): update actions/checkout digest to 44c2b7a (#64) #108

Workflow file for this run

name: continuous-integration
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
env:
GOLANGCI_LINT_VERSION: v1.58.0
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Lint code
uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
skip-pkg-cache: true
skip-build-cache: true
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
cache: true
- name: Unit tests
run: |
go test -v -race -gcflags=-l ./...
go test -gcflags=-l -covermode=count -coverprofile=profile.cov ./...
- name: Goveralls
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov