Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
tstirrat committed Jul 28, 2024
1 parent dd7b09d commit 71fb7ef
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 71fb7ef

Please sign in to comment.