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 +