Adding a test workflow for building on ARM system #1
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: Building on ARM System | |
| on: | |
| workflow_dispatch: | |
| push: | |
| jobs: | |
| hello: | |
| runs-on: ubuntu-24.04-arm | |
| steps: | |
| - name: Print Hello World | |
| run: 'echo "Hello World"' |