Skip to content

chore(deps): bump actions/checkout from 4.1.1 to 4.1.4 #115

chore(deps): bump actions/checkout from 4.1.1 to 4.1.4

chore(deps): bump actions/checkout from 4.1.1 to 4.1.4 #115

Workflow file for this run

name: CI
on:
push:
pull_request:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v4.1.0
with:
go-version: ^1.15
id: go
- uses: actions/checkout@v4.1.4
- name: Get dependencies
run: go get -v -t -d ./...
- name: Test
run: go test -v -cover ./...
- name: Build
run: go build -v