update vice setup instructions #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install clang-format and cc65 | |
run: | | |
sudo apt-get update && sudo apt-get install -y clang-format cc65 | |
- name: Check code is formatted per clang-format | |
run: | | |
./travis/check-formatting.sh | |
- name: Check code compiles with cc65 | |
run: | | |
make |