Skip to content

Merge pull request #6 from geoCML/add-init-src #10

Merge pull request #6 from geoCML/add-init-src

Merge pull request #6 from geoCML/add-init-src #10

Workflow file for this run

on:
push:
branches: [ main ]
paths-ignore:
- '.gitignore'
- 'LICENSE.md'
- 'README.md'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ['windows-latest', 'ubuntu-latest', 'macos-latest']
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: 3.12.4
- run: pip install -r requirements.txt pyinstaller
- run: pyinstaller tabor.py
- uses: actions/upload-artifact@v2
with:
path: dist/*