Macros #284
Workflow file for this run
This file contains hidden or 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: [pull_request] | |
| jobs: | |
| test-cases: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v6 | |
| - name: Install nasm | |
| uses: ilammy/setup-nasm@v1 | |
| - name: Setup Go | |
| uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.26.x' | |
| - name: Run the golang tests | |
| run: go test ./... | |
| - name: Run the functional tests | |
| run: make test | |
| - name: See our sizes | |
| run: find . -type f -executable -exec ls -l {} \; | |