Skip to content

Bump actions/setup-go from 5.4.0 to 5.5.0 #48

Bump actions/setup-go from 5.4.0 to 5.5.0

Bump actions/setup-go from 5.4.0 to 5.5.0 #48

Workflow file for this run

# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0
name: Unit Tests
on:
push:
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
unit-tests:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Set up Go
uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5
with:
go-version-file: "go.mod"
- name: Download dependencies
run: make deps
- name: Run unit tests
run: make test