We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf3c675 commit 47cdd57Copy full SHA for 47cdd57
.github/workflows/linux.yaml
@@ -0,0 +1,29 @@
1
+name: frozen app with cx_freeze on windows
2
+
3
+on:
4
+ push:
5
+ branches: [ "main" ]
6
+ schedule:
7
+ - cron: '0 0 * * 0' # This runs the workflow every Sunday at midnight UTC
8
9
+jobs:
10
+ build:
11
12
+ runs-on: ${{ matrix.os }}
13
+ strategy:
14
+ matrix:
15
+ os: [ubuntu-latest]
16
17
+ steps:
18
+ - name: Check out repository
19
+ uses: actions/checkout@v2
20
21
+ - uses: astral-sh/setup-uv@v1
22
+ with:
23
+ version: "latest"
24
25
+ - name: basic
26
+ run: |
27
+ cd cx_Freeze_win
28
+ uvx --from cx_Freeze --with numpy,pandas,robotframework cxfreeze build || true
29
+ build/*/robot ../examples/
0 commit comments