Skip to content

Merge pull request #12 from IPdotSetAF/6-database-tools #5

Merge pull request #12 from IPdotSetAF/6-database-tools

Merge pull request #12 from IPdotSetAF/6-database-tools #5

name: Build Binaries
on:
workflow_call:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:

Check failure on line 11 in .github/workflows/build-binaries.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/build-binaries.yml

Invalid workflow file

You have an error in your yaml syntax on line 11
os: ['windows-latest', 'ubuntu-latest, 'macos-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.7
- run: cd CodeChefDatabaseProxy
- run: pip install -r requirements.txt pyinstaller
- run: pyinstaller --onefile proxy.py
# Optionally verify that it works (provided that it does not need user interaction)
#- run: ./dist/your-code/your-code
- uses: actions/upload-artifact@v2
with:
path: dist/*