Skip to content

chore(deps): bump actions/checkout from 6 to 7 #13

chore(deps): bump actions/checkout from 6 to 7

chore(deps): bump actions/checkout from 6 to 7 #13

Workflow file for this run

---
# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: CI
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
go: [oldstable, stable]
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v7
- uses: actions/setup-go@v6
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test ./... -coverprofile=./cover.out -covermode=atomic -coverpkg=./...