Skip to content

chore: bump actions/checkout from 4.0.0 to 4.1.0 #13

chore: bump actions/checkout from 4.0.0 to 4.1.0

chore: bump actions/checkout from 4.0.0 to 4.1.0 #13

Workflow file for this run

name: test
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.0
- name: Format the source code and check for differences
run: go fmt ./... && git diff --exit-code HEAD
- name: Run unit tests
run: go test -v ./...