Skip to content

try windows

try windows #24

Workflow file for this run

name: Pytest
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
- uses: robinraju/release-downloader@v1
with:
repository: "gbdk-2020/gbdk-2020"
tag: "4.3.0"
fileName: "gbdk-linux64.tar.gz"
extract: true
tarBall: true
- name: Get BGB
uses: schmiddim/action-wget-unzip@v2
with:
url: "https://bgb.bircd.org/bgb.zip"
destination: bgb
- name: Install dependencies
run: |
cd tests
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Test with pytest
run: |
cd tests
pytest -v -s