From db23b6fff61f3b4c3fe3abc8b2e42a8a32699327 Mon Sep 17 00:00:00 2001 From: Terence Boldt Date: Sat, 30 Oct 2021 20:55:08 -0400 Subject: [PATCH] Add assembler github action --- .github/workflows/asm.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/asm.yml diff --git a/.github/workflows/asm.yml b/.github/workflows/asm.yml new file mode 100644 index 0000000..9eac097 --- /dev/null +++ b/.github/workflows/asm.yml @@ -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 +