Skip to content

chore(deps): update actions/setup-go action to v5 #94

chore(deps): update actions/setup-go action to v5

chore(deps): update actions/setup-go action to v5 #94

Workflow file for this run

name: build and run unit tests
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 10
strategy:
matrix:
os: [ ubuntu-22.04 ]
steps:
- name: Install Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
# renovate: datasource=golang-version depName=go
go-version: 1.21.4
- name: Checkout code
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
path: src/little-vm-helper
- name: Build and run Go tests
run: |
cd src/little-vm-helper
make