Skip to content

Update actions/checkout action to v3.6.0 #209

Update actions/checkout action to v3.6.0

Update actions/checkout action to v3.6.0 #209

Workflow file for this run

name: test
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: "1.22"
- name: Checkout code
uses: actions/checkout@v3.6.0
- name: Test
run: |
go test ./... -coverprofile=profile.cov
- uses: shogo82148/actions-goveralls@v1.6.0
with:
path-to-profile: profile.cov