Skip to content

CI

CI #289

Workflow file for this run

name: CI
on:
push:
pull_request:
schedule:
- cron: '0 1 1,14,28 * *'
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ['3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: FedericoCarboni/setup-ffmpeg@v2
with:
token: ${{ secrets.TOKEN_FFMPEG }}
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install pipenv
run: |
python -m pip install --upgrade pipenv wheel
pipenv --support
- name: Install dependencies
run: |
pipenv sync
- name: Run test script
run: |
pipenv run python ./scripts/ci_test.py