Skip to content

Commit f57397f

Browse files
committed
add macOS build GH Actions workflow
1 parent fcbf634 commit f57397f

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/python-ci.yml renamed to .github/workflows/macos-build.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Python CI
1+
name: macOS Build
22

33
on: [push]
44

@@ -7,10 +7,8 @@ jobs:
77
runs-on: ${{ matrix.os }}
88
strategy:
99
matrix:
10-
os: [ubuntu-latest]
10+
os: [macos-latest]
1111
python-version: [3.9]
12-
env:
13-
DISPLAY: ":99.0"
1412

1513
steps:
1614
- uses: actions/checkout@v2
@@ -22,3 +20,7 @@ jobs:
2220
run: |
2321
python -c "import sys; print(sys.version)"
2422
python -c "import struct; print(struct.calcsize('P') * 8)"
23+
- name: Install dependencies
24+
run: pip install -r requirements.txt
25+
- name: PyInstaller build
26+
run: make build-macos

0 commit comments

Comments
 (0)