Skip to content

PyInstaller workflow #1

PyInstaller workflow

PyInstaller workflow #1

Workflow file for this run

name: Integration Tests
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:

Check failure on line 10 in .github/workflows/build_cli.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build_cli.yml

Invalid workflow file

You have an error in your yaml syntax on line 10
os: ['windows-latest', 'ubuntu-latest, 'macos-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
- run: pip install -r requirements.txt pyinstaller
- run: pyinstaller -F ./dvuploader/cli.py -n dvuploader-${{ matrix.os }}
- uses: actions/upload-artifact@v2
with:
path: dist/*