CI: build simavr wrapper #1
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
--- | |
# configuration for GitHub Actions | |
name: simboard tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
wrapper-simavr: | |
name: Build and test wrapper-simavr | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: | | |
cd wrapper-simavr | |
mkdir build && cd build && cmake .. | |
make |