Skip to content

update .gitignore

update .gitignore #5

Workflow file for this run

name: Package GUI with Pyinstaller
on:
push:
branches: [ "cat-devel" ]
pull_request:
branches: [ "cat-devel" ]
jobs:
build:
runs-on: ${{ matrix.os }}
environment: hatch build
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
python-version: ["3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -e .
- name: Build with hatch
run: |
hatch build -c
- name: Package GUI with PyInstaller
run: |
cd gui
pyinstaller app.py