Skip to content

Merge pull request #28 from geoCML/boolean-ignore-rasters #31

Merge pull request #28 from geoCML/boolean-ignore-rasters

Merge pull request #28 from geoCML/boolean-ignore-rasters #31

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 --paths=./src -y ./src/tabor.py
- uses: actions/upload-artifact@v4
with:
name: Tabor ${{ matrix.os }}
path: dist/*