Skip to content

Add tools for stacks #871

Add tools for stacks

Add tools for stacks #871

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@93cb6efe18208431cddfb8368fd83d5badbf9bfd
- name: Set up Go
uses: actions/setup-go@4dc6199c7b1a012772edbd06daecab0f50c9053c
with:
go-version-file: "go.mod"
- name: Download dependencies
run: make deps
- name: Run unit tests
run: make test