Updated readme #2
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: C/C++ CI | |
on: | |
push: | |
branches: [ "main", "master" ] | |
pull_request: | |
branches: [ "main", "master" ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [ "ubuntu-20.04", "ubuntu-22.04", "ubuntu-24.04" ] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install dependencies | |
run: sudo apt-get -y install make gcc g++ bison flex | |
- name: make | |
run: make | |
- name: sudo make install | |
run: sudo make install | |
- name: make examples | |
run: cd gbdk-lib/examples/gb && make |