Update Build.yml #3
This file contains 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
# yet im not developper, so, it can be very bad what im doing, but its usefull to me to learn | |
name: Build | |
on: [pull_request, push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Install toolchain | |
uses: numworks/setup-arm-toolchain@latest | |
- name: Run make build | |
run: make build | |
- name: Run make check | |
run: make check | |
- uses: actions/upload-artifact@master | |
with: | |
name: peanutgb.nwa | |
path: output/peanutgb.nwa |