Add support for Trevor Flowers' mini VT100. #252
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: Build | |
on: [push, pull_request] | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build: | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
os: [ubuntu-18.04, ubuntu-20.04, macos-10.15] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: sh -ex test/deps.sh | |
- name: Build VT100 | |
run: cd vt100; make | |
- name: Build VT52 | |
run: cd vt52; make | |
- name: Test | |
run: cd vt100; make check |