Accept link cable data via a TCP port #34
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] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install libsdl2-dev | |
- name: Build | |
run: | | |
export CLICOLOR_FORCE=1 | |
make --no-print-directory release | |
- name: Run test roms | |
run: ./scripts/run_test_roms ./scripts/test_roms |