Skip to content

Update files for redcap2rs-4.9.1-20260721162303 #667

Update files for redcap2rs-4.9.1-20260721162303

Update files for redcap2rs-4.9.1-20260721162303 #667

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
workflow_dispatch: # Add workflow dispatch trigger
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ["3.11"]
steps:
- uses: actions/checkout@v3
with: # no need for the history
fetch-depth: 1
submodules: recursive
- name: Install FFmpeg
run: |
sudo apt-get update
sudo apt-get install -y ffmpeg
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
pyproject.toml
setup.py
- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools
pip install --no-cache-dir --editable=".[dev]"
- name: Test with pytest
run: |
pytest tests