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 d83533e commit 30a93b7Copy full SHA for 30a93b7
.github/workflows/test.yml
@@ -1,16 +1,22 @@
1
-name: test
+name: Build binaries
2
3
on:
4
- pull_request:
5
push:
+ branches:
6
+ - main
7
8
jobs:
- test:
9
+ build:
10
runs-on: ubuntu-latest
11
steps:
- - uses: actions/checkout@v3
12
- - uses: actions/setup-node@v3
13
- with:
14
- node-version: 16
15
- - run: npm install
16
- - run: npm test
+ - uses: actions/checkout@v2
+ # setup python
+ - name: Set up Python 3.8
+ uses: actions/setup-python@v2
+ with:
17
+ python-version: 3.8
18
+ - name: Build binaries
19
+ run: |
20
+ pip install -r requirements.txt
21
+ pip install pyinstaller
22
+ pyinstaller --onefile __main__.py
0 commit comments