Add root LICENSE and consolidate licensing into LICENSES/ #11
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 LibXenon | |
| on: | |
| push: | |
| paths-ignore: | |
| - README.md | |
| pull_request: | |
| paths-ignore: | |
| - README.md | |
| jobs: | |
| test_libxenon: | |
| runs-on: ubuntu-latest | |
| container: free60/toolchain:latest | |
| steps: | |
| - name: Check Out Repo | |
| uses: actions/checkout@v6 | |
| - name: Compile and install libxenon | |
| working-directory: toolchain/ | |
| run: ./build-xenon-toolchain libxenon | |
| - name: Add toolchain to PATH | |
| run: echo "/usr/local/xenon/bin" >> $GITHUB_PATH | |
| - name: Build cube sample | |
| working-directory: devkitxenon/examples/xenon/graphics/cube | |
| env: | |
| DEVKITXENON: /usr/local/xenon | |
| run: | | |
| make |