Improved file_format documentation (#137) #90
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: Validator Tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
check-schema: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: "~1.22" | |
- name: Run govulncheck | |
run: | | |
make -C validator govulncheck | |
# TODO: Publish releases | |
- name: Build | |
run: make validator | |
- name: Test | |
run: | | |
cd validator | |
go test . | |
- name: Run ShellTests | |
run: | | |
make validator-run-shelltests |