Skip to content

Bump actions/checkout from 6 to 7 #103

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #103

Workflow file for this run

name: test
on:
push:
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v6
with:
go-version: "1.21"
cache: true
- name: Install dependencies
run: go mod download
- name: Run tests
run: go test -v ./...