Skip to content

Bump actions/checkout from 2 to 4 (#21) #56

Bump actions/checkout from 2 to 4 (#21)

Bump actions/checkout from 2 to 4 (#21) #56

Workflow file for this run

name: Tests
on:
push:
jobs:
tests-off:
name: ${{ matrix.os }} - Go v${{ matrix.go-version }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
go-version:
- "1.21.x"
os:
- "ubuntu-latest"
steps:
- uses: actions/checkout@v4
- name: Setup Go ${{ matrix.go }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: |
go mod tidy -v
go test -cover ./...