Add assembler github action

This commit is contained in:
Terence Boldt 2021-10-30 20:55:08 -04:00
parent 105a6c318e
commit db23b6fff6
1 changed files with 27 additions and 0 deletions

27
.github/workflows/asm.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Assembler
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up cc65
run: |
cd ..
git clone https://github.com/cc65/cc65.git
cd cc65
make
- name: Build
run: |
cd Apple2
./assemble.sh