Skip to content

Merge pull request #22 from elliotcmorris/work/standardise-line-endings #48

Merge pull request #22 from elliotcmorris/work/standardise-line-endings

Merge pull request #22 from elliotcmorris/work/standardise-line-endings #48

Workflow file for this run

name: Run tests
on:
push:
branches: [main]
paths-ignore:
- "*.md"
- "*.in"
- "*.txt"
pull_request:
branches: [main]
paths-ignore:
- "*.md"
- "*.in"
- "*.txt"
jobs:
test:
env:
plugin_name: "otio_openassetio"
name: Test
strategy:
matrix:
python-version: [3.9]
runs-on: "ubuntu-latest"
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install Plugin
run: pip install -e .[dev]
- name: Lint with flake8
run: flake8 --show-source --statistics otio_openassetio tests
- name: Test with pytest
run: pytest tests
shell: bash