فهرست منبع

adding timeout command on osx

Rodja Trappe 2 سال پیش
والد
کامیت
0be9bd9125
1فایلهای تغییر یافته به همراه6 افزوده شده و 0 حذف شده
  1. 6 0
      .github/workflows/test.yml

+ 6 - 0
.github/workflows/test.yml

@@ -49,6 +49,9 @@ jobs:
       matrix:
         os: [windows-latest, macos-latest]
         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:
       - name: Check out repository
         uses: actions/checkout@v2
@@ -65,6 +68,9 @@ jobs:
         run: |
           echo "C:\Program Files\Git\bin\bash.exe" > $GITHUB_PATH
         shell: bash
+      - name: Install coreutils (macOS)
+        if: runner.os == 'macOS'
+        run: brew install coreutils
       - name: install dependencies
         run: |
           poetry config virtualenvs.create false