Skip to content

Commit

Permalink
Create static_build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
jdegenstein authored Feb 17, 2025
1 parent cfe9df2 commit 1b8b62c
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/static_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: static_build
# this workflow is designed to:
# 1. create a static redistributable "build" of nice123d
# 2. create an OS specific launcher executable as an obvious entry point

on: [workflow_dispatch]
jobs:

tests:
strategy:
fail-fast: false
matrix:
python-version: ["3.12"]
os: [windows-latest]
# os: [macos-13, macos-14, ubuntu-latest, windows-latest]

runs-on: ${{ matrix.os }}
steps:
- name: Check out nice123d from github repo
- uses: actions/checkout@v4
- name: Install the latest version of uv
uses: astral-sh/setup-uv@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install nice123d from local folder
- run: uv pip install .

0 comments on commit 1b8b62c

Please sign in to comment.