Skip to content

github says 'we dont support this old version of macOS' #121

github says 'we dont support this old version of macOS'

github says 'we dont support this old version of macOS' #121

Workflow file for this run

name: Run Tests
on:
- push
- pull_request
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.8", "3.9", "3.10"] #3.9 only failing for tables on macos and windows; mwm 6302021
include:
- os: ubuntu-latest
path: ~/.cache/pip
- os: macos-11
path: ~/Library/Caches/pip
- os: windows-latest
path: ~\AppData\Local\pip\Cache
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install ffmpeg
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo apt-get update
sudo apt-get install ffmpeg
elif [ "$RUNNER_OS" == "macOS" ]; then
brew install ffmpeg
else
choco install ffmpeg
fi
shell: bash
- name: Install and test
run: |
python -m pip install --upgrade pip
python -m pip install .
dlc-live-test --nodisplay