Skip to content

Commit 1b8b62c

Browse files
authored
Create static_build.yml
1 parent cfe9df2 commit 1b8b62c

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

.github/workflows/static_build.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: static_build
2+
# this workflow is designed to:
3+
# 1. create a static redistributable "build" of nice123d
4+
# 2. create an OS specific launcher executable as an obvious entry point
5+
6+
on: [workflow_dispatch]
7+
jobs:
8+
9+
tests:
10+
strategy:
11+
fail-fast: false
12+
matrix:
13+
python-version: ["3.12"]
14+
os: [windows-latest]
15+
# os: [macos-13, macos-14, ubuntu-latest, windows-latest]
16+
17+
runs-on: ${{ matrix.os }}
18+
steps:
19+
- name: Check out nice123d from github repo
20+
- uses: actions/checkout@v4
21+
- name: Install the latest version of uv
22+
uses: astral-sh/setup-uv@v5
23+
with:
24+
python-version: ${{ matrix.python-version }}
25+
- name: Install nice123d from local folder
26+
- run: uv pip install .

0 commit comments

Comments
 (0)