mirror of
https://github.com/tjboldt/Apple2-IO-RPi.git
synced 2024-11-25 21:33:15 +00:00
28 lines
391 B
YAML
28 lines
391 B
YAML
|
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
|
||
|
|