Skip to content

github-action: bump actions/checkout from 4.1.0 to 4.1.6 #513

github-action: bump actions/checkout from 4.1.0 to 4.1.6

github-action: bump actions/checkout from 4.1.0 to 4.1.6 #513

Workflow file for this run

name: Go
on:
pull_request:
branches:
- main
push:
branches:
- main
env:
GO_VERSION: "1.20"
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- name: Checkout repo
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29
- name: "Install Go ${{env.GO_VERSION}}"
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491
with:
go-version: "${{env.GO_VERSION}}"
- name: Run tests
run: |
make unit