ci: Bump actions/checkout from 4.1.5 to 4.1.6 #458
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Tests" | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
Unit-Tests: | |
strategy: | |
matrix: | |
# test the lower bounds of support, and the latest available | |
go-version: ["1.21.x"] | |
platform: [ubuntu-latest] | |
runs-on: ${{ matrix.platform }} | |
steps: | |
- uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 #v5.0.1 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6 | |
- name: Restore bootstrap cache | |
id: bootstrap-cache | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 #v4.0.2 | |
with: | |
path: | | |
~/go/pkg/mod | |
${{ github.workspace }}/.tmp | |
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}-${{ hashFiles('Makefile') }} | |
restore-keys: | | |
${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }}- | |
${{ runner.os }}-go-${{ matrix.go-version }}- | |
- name: Bootstrap project dependencies | |
if: steps.bootstrap-cache.outputs.cache-hit != 'true' | |
run: make bootstrap | |
- name: Run unit tests | |
run: make unit |