Add hashModulo #13
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 test | |
on: push | |
jobs: | |
run-test: | |
name: Run test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: 1.20 | |
- name: Install go-jsonnet | |
run: | | |
# https://github.com/argoproj/argo-cd/blob/v2.6.8/go.mod#L40 | |
go install github.com/google/go-jsonnet/cmd/[email protected] | |
- name: Run test | |
run: | | |
jsonnet machete/test/*.jsonnet |