Split up jlmkr.py into smaller files as-is #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Inspiration from <https://github.com/pypa/hatch/issues/669> | |
name: Build | |
on: | |
push: | |
branches: ["**"] | |
pull_request: | |
branches: ["**"] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build jlmkr tool | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
python-version: | |
- "3.11" # TrueNAS SCALE 24.04 Dragonfish | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Set up pip cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.cache/pip | |
key: ${{ runner.os }}-pip-${{ hashFiles('pyproject.toml') }} | |
restore-keys: ${{ runner.os }}-pip- | |
- name: Install Hatch | |
uses: pypa/hatch@install | |
- name: Run style check | |
run: hatch fmt --check | |
# - name: Run unit tests | |
# run: hatch run +py=${{ matrix.python-version }} test:test | |
- name: Build distribution | |
run: hatch build -t zipapp -t appzip | |
# - name: Upload artifacts | |
# uses: actions/upload-artifact@v4 | |
# with: | |
# path: | |
# - dist/jlmkr | |
# - dist/jlmkr-*.zip | |
# if-no-files-found: error |