Skip to content

Commit 8fa661d

Browse files
committed
Merge branch 'main' of github.com:fosslight/fosslight_source_scanner into req_bug
2 parents d33d139 + 2f61479 commit 8fa661d

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

.github/workflows/pull-request.yml

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
matrix:
1919
python-version: [3.8, 3.11]
20-
os: [ubuntu-latest, macos-latest, windows-latest]
20+
os: [ubuntu-latest, windows-latest]
2121
runs-on: ${{ matrix.os }}
2222
steps:
2323
- uses: actions/checkout@v3
@@ -32,6 +32,27 @@ jobs:
3232
- name: Run Tox
3333
run: |
3434
tox -e release
35+
build_macos:
36+
strategy:
37+
matrix:
38+
python-version: [3.8, 3.11]
39+
runs-on: macos-latest
40+
steps:
41+
- uses: actions/checkout@v3
42+
- name: Set up Python ${{ matrix.python-version }}
43+
uses: actions/setup-python@v4
44+
with:
45+
python-version: ${{ matrix.python-version }}
46+
- name: Install dependencies
47+
run: |
48+
brew install openssl
49+
brew install libmagic
50+
brew install postgresql
51+
python -m pip install --upgrade pip
52+
pip install tox
53+
- name: Run Tox
54+
run: |
55+
tox -e release
3556
3657
reuse:
3758
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)