Skip to content

Commit

Permalink
Run control-plane-api unit tests in Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
spenes committed Jul 3, 2024
1 parent c2a4efa commit 129c339
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Install Go
uses: actions/setup-go@v3
with:
go-version: '1.22'
check-latest: true

- name: Run control-plane-api tests
run: |
cd $GITHUB_WORKSPACE/provisioning/resources/control-plane
go test *.go
- name: Provision a local Mini instance
run: ansible-playbook -i $GITHUB_WORKSPACE/provisioning/inventory $GITHUB_WORKSPACE/provisioning/local_setup.yml --connection=local --become

Expand Down

0 comments on commit 129c339

Please sign in to comment.