Skip to content

build(deps): bump the github-actions group with 3 updates #156

build(deps): bump the github-actions group with 3 updates

build(deps): bump the github-actions group with 3 updates #156

Workflow file for this run

name: test
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions: {}
jobs:
test:
strategy:
fail-fast: false
matrix:
go-version: [stable, oldstable]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Run tests
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
with:
persist-credentials: false
- uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 # v6.5.0
with:
go-version: ${{ matrix.go-version }}
- name: Check and get dependencies
run: go mod tidy
- run: make test