2024-01-11 04:46:37 -05:00
|
|
|
name: Test
|
2023-12-23 08:05:07 -05:00
|
|
|
|
|
|
|
on: [push, pull_request]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
pytest-win:
|
2024-01-11 04:46:37 -05:00
|
|
|
name: 'Python Windows'
|
2023-12-23 08:05:07 -05:00
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
2024-01-24 21:16:29 -05:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-23 08:05:07 -05:00
|
|
|
|
|
|
|
- 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:
|
2024-01-11 04:46:37 -05:00
|
|
|
name: 'Python Linux'
|
2023-12-23 08:05:07 -05:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-01-24 21:16:29 -05:00
|
|
|
- uses: actions/checkout@v4
|
2023-12-23 08:05:07 -05:00
|
|
|
|
|
|
|
- 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
|