MTL-2484 - Remove kube-api from all but NMN (#436) #787
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: Test | |
on: | |
push: | |
branches: | |
- '*' | |
tags: | |
# semver tags: | |
- 'v[12].[0-9]+.[0-9]+' | |
pull_request: | |
branches: | |
- main | |
- 'release/**' | |
jobs: | |
test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.22 | |
- name: Test | |
run: | | |
make tools | |
make test |