Update clang-format script to include additional source directories #13
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: compile | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| compile-norns: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: compile norns | |
| uses: addnab/docker-run-action@v3 | |
| with: | |
| image: robbielyman/norns-ci:latest | |
| options: -v ${{ github.workspace }}:/norns-build | |
| run: | | |
| ./waf configure --release && ./waf build --release | |
| lint-lua: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: install luacheck | |
| run: | | |
| sudo apt-get update -qq | |
| sudo apt-get install -y lua5.3 liblua5.3-dev luarocks | |
| sudo luarocks --lua-version=5.3 install luacheck | |
| - name: lint lua code | |
| run: luacheck lua/ --codes |