Skip to content

Add ability to parse stations #49

Add ability to parse stations

Add ability to parse stations #49

Workflow file for this run

name: Development Build
on:
push:
jobs:
build:
name: Development Build
strategy:
matrix:
include:
- os: ubuntu-20.04
dist: linux
ext:
- os: macos-11
dist: macos
ext:
- os: windows-2019
dist: windows
ext: .exe
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
uses: actions/setup-python@v3
with:
python-version: "3.8"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -e .[gui,dev]
# Replace pydantic with no-binary version to lightweight target binary a bit
# python -m pip uninstall -y pydantic
# python -m pip install --no-binary pydantic pydantic>=1.9.0
- name: Build standalone app
run: |
python setup.py build_standalone
- name: Upload distributive
uses: actions/upload-artifact@v3
with:
name: Parser2GIS-dev-${{matrix.dist}}
path: dist/Parser2GIS${{matrix.ext}}
retention-days: 5