File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 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
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
You can’t perform that action at this time.
0 commit comments