Skip to content

chore(deps): bump actions/checkout from 4.1.1 to 4.1.5 #1440

chore(deps): bump actions/checkout from 4.1.1 to 4.1.5

chore(deps): bump actions/checkout from 4.1.1 to 4.1.5 #1440

Workflow file for this run

name: build-test
on:
push:
branches:
- 'main'
- 'release-**'
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # pin@v4.1.5
- name: Setup Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # pin@5.0.1
with:
go-version: '1.21'
- name: Test source headers are present
run: make test-source-headers
- name: Run unit tests
run: make test-coverage
- name: Test build
run: make build