Prevent OOB string accesses; fix an uninitialized memory usage #269
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: Check GSR testROM accuracy | |
on: [push, pull_request] | |
jobs: | |
Check-TestROMs: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install dependencies | |
run: "sudo apt install scons" | |
- name: Checkout repository code | |
uses: actions/checkout@v2 | |
with: | |
path: gambatte-speedrun | |
- name: Assemble TestROMs | |
run: "cd gambatte-speedrun/test && sh scripts/assemble_tests.sh" | |
- name: Build libgambatte and run tests | |
run: "cd gambatte-speedrun && sh scripts/test.sh" |