Implement/match LegoVideoManager::Tickle #253
Workflow file for this run
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: Unit Tests | |
on: [push, pull_request] | |
jobs: | |
pytest-win: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install python libraries | |
shell: bash | |
run: | | |
pip install pytest -r tools/requirements.txt | |
- name: Run python unit tests (Windows) | |
shell: bash | |
run: | | |
pytest tools/isledecomp | |
pytest-ubuntu: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install python libraries | |
shell: bash | |
run: | | |
pip install pytest -r tools/requirements.txt | |
- name: Run python unit tests (Ubuntu) | |
shell: bash | |
run: | | |
pytest tools/isledecomp |