|
@@ -49,6 +49,9 @@ jobs:
|
|
matrix:
|
|
matrix:
|
|
os: [windows-latest, macos-latest]
|
|
os: [windows-latest, macos-latest]
|
|
python-version: ["3.7", "3.11"]
|
|
python-version: ["3.7", "3.11"]
|
|
|
|
+ exclude: # macos seems to have issues with 3.7; skipping because it's not crucial
|
|
|
|
+ - os: macos-latest
|
|
|
|
+ python-version: "3.7"
|
|
steps:
|
|
steps:
|
|
- name: Check out repository
|
|
- name: Check out repository
|
|
uses: actions/checkout@v2
|
|
uses: actions/checkout@v2
|
|
@@ -65,6 +68,9 @@ jobs:
|
|
run: |
|
|
run: |
|
|
echo "C:\Program Files\Git\bin\bash.exe" > $GITHUB_PATH
|
|
echo "C:\Program Files\Git\bin\bash.exe" > $GITHUB_PATH
|
|
shell: bash
|
|
shell: bash
|
|
|
|
+ - name: Install coreutils (macOS)
|
|
|
|
+ if: runner.os == 'macOS'
|
|
|
|
+ run: brew install coreutils
|
|
- name: install dependencies
|
|
- name: install dependencies
|
|
run: |
|
|
run: |
|
|
poetry config virtualenvs.create false
|
|
poetry config virtualenvs.create false
|