Skip to content

Use actions/checkout@v4 (#24) #40

Use actions/checkout@v4 (#24)

Use actions/checkout@v4 (#24) #40

Workflow file for this run

name: Regression testing
on:
push:
pull_request:
schedule:
- cron: '37 13 20 * *'
jobs:
testing:
strategy:
matrix:
rgbds: ['', '--HEAD']
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Install RGBDS
run: |
brew install ${{ matrix.rgbds }} rgbds
- name: Check that examples assemble correctly
run: |
cd examples
for f in *.asm; do
if [[ $f = pitfalls.asm ]]; then continue; fi
echo "Assembling: $f"
rgbasm "$f" -o "${f%.asm}.o"
echo "Linking: $f"
rgblink "${f%.asm}.o"
done