2024 Q2 release #1
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 tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
test: | |
runs-on: "self-hosted" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Update vendor | |
run: go mod vendor | |
- name: Build | |
run: make build | |
- name: Test | |
run: make test |