Provisioner - fully remove obsolete code for runtime registration/deregistration in compass #63
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run unit tests | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- 'components/provisioner/**' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- 'components/provisioner/**' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up go environment | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: 'components/provisioner/go.mod' | |
cache-dependency-path: 'components/provisioner/go.mod' | |
- name: Run unit tests | |
run: | | |
mkdir -p /home/runner/go/pkg/mod | |
make -C components/provisioner verify |