feat: continue standard bullets #32
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: Test | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| fmt: | |
| name: Check Formatting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6.0.2 | |
| - name: Set up tools via mise | |
| uses: jdx/mise-action@v4.0.1 | |
| - name: Check formatting | |
| run: mise run fmt:check | |
| test: | |
| name: Run Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v6.0.2 | |
| - name: Set up tools via mise | |
| uses: jdx/mise-action@v4.0.1 | |
| - name: Run Lua tests | |
| run: mise run test |