Update README.md #43
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: Build EXE | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build-py-to-exe: | |
runs-on: windows-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
python-version: 3.12 | |
- name: Install requirements | |
run: uv pip install --system -r requirements.txt | |
- name: Run all tests except invalid nexts | |
run: uv run pytest src/test_main.py --deselect src/test_main.py::test_no_invalid_nexts | |
continue-on-error: true | |
# We only want it to fail when there's something that could crash the game | |
- name: Run invalid nexts test | |
run: uv run pytest src/test_main.py::test_no_invalid_nexts | |
- name: Build with PyInstaller | |
run: uv run pyinstaller -F src/main.py --hidden-import sys --add-data src/resources/:./resources/ --name Cave-of-Shadows-AdventureSoft | |
- name: Publish | |
uses: softprops/[email protected] | |
with: | |
files: dist/Cave-of-Shadows-AdventureSoft.exe | |
tag_name: v${{ github.run_number }} | |
prerelease: false | |
name: v${{ github.run_number }} |