Add more STM functions #316
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: C/C++ CI | |
| on: [push, pull_request] | |
| jobs: | |
| build: | |
| name: ubuntu-latest | |
| runs-on: ubuntu-latest | |
| container: devkitpro/devkitppc:latest | |
| steps: | |
| - uses: actions/[email protected] | |
| with: | |
| fetch-tags: true | |
| fetch-depth: '25' | |
| #workaround for the github checkout not fully working right with containers | |
| #see : https://github.com/actions/checkout/issues/2031 | |
| - name: Add git safe directory | |
| run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | |
| - name: Build | |
| run: | | |
| make -j$(nproc) | |