Add Zig Extension #125
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: C Tests | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: sudo apt-get install check | |
| - name: make | |
| run: make | |
| - name: make test | |
| run: make test | |
| - name: run tests | |
| run: ./run_erbx_tests | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install clang-format | |
| run: sudo apt-get install -y clang-format-19 | |
| - name: clang-format version | |
| run: clang-format-19 --version | |
| - name: Lint | |
| run: bin/lint |