1
0
Fork 0
mirror of https://github.com/putnam/binmerge.git synced 2025-04-19 08:28:06 +02:00
binmerge/.github/workflows/main.yml
Chris Putnam 05c615cbfa
add --help to run check
to ensure exit code is 0
2024-02-10 21:44:31 -06:00

24 lines
543 B
YAML

on:
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['windows-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.12
- run: pip install pyinstaller
- run: pyinstaller -F binmerge
# Optionally verify that it works (provided that it does not need user interaction)
- run: ./dist/binmerge.exe --help
- uses: actions/upload-artifact@v2
with:
path: dist/*