From 71fb7efbc100b5dfc94498fa2f6cca22d1f6f3f8 Mon Sep 17 00:00:00 2001 From: Tim Stirrat Date: Sun, 28 Jul 2024 14:08:31 +0200 Subject: [PATCH] ... --- .github/workflows/test.yml | 26 ++++++++++++++------------ 1 file changed, 14 insertions(+), 12 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 620b53c..ac941b2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,28 +10,30 @@ jobs: - uses: actions/checkout@v4 with: submodules: recursive - - name: Set up Python - uses: actions/setup-python@v5 + - uses: actions/setup-python@v5 with: python-version: "3.12" - - uses: robinraju/release-downloader@v1 + - name: wget gbdk + uses: robinraju/release-downloader@v1 with: repository: "gbdk-2020/gbdk-2020" tag: "4.3.0" - fileName: "gbdk-linux64.tar.gz" + fileName: "gbdk-win64.zip" 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 + - name: wget bgb + shell: bash + run: | + # wget https://bgb.bircd.org/bgb.zip + wget https://bgb.bircd.org/bgbw64.zip + unzip bgb.zip + - name: pip install + shell: bash run: | cd tests python -m pip install --upgrade pip pip install -r requirements.txt - - name: Test with pytest + - name: pytest + shell: bash run: | cd tests pytest -v -s