Skip to content

test: tidy test plugin Go modules. #772

test: tidy test plugin Go modules.

test: tidy test plugin Go modules. #772

Workflow file for this run

name: CI
on:
push:
jobs:
check:
name: "Run checks"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: hashicorp/setup-golang@v1
- name: "Run checks"
run: |
make tools
make check
build:
name: "Run dev"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: hashicorp/setup-golang@v1
- name: "Build dev binary"
run: |
make tools
make dev
test:
name: "Run tests"
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- uses: hashicorp/setup-golang@v1
- name: "Run tests"
run: |
make tools
make test