Skip to content

Commit

Permalink
Fix linter pathing
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Nov 8, 2023
1 parent 53a06b2 commit be1b61b
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@ name: lint
on: [push, pull_request]

jobs:
windows:
runs-on: windows-latest
strategy:
matrix:
versions:
- 65
python-version:
- "3.11"
windows:
runs-on: windows-latest
strategy:
matrix:
versions:
- 65
python-version:
- "3.11"

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 dependencies
run: |
python3 -m pip install --upgrade pip
pip install vapoursynth-portable==${{ matrix.versions }}
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Running flake8
run: flake8 vssource
- name: Running mypy
if: steps.dependencies.outcome == 'success'
run: mypy vssource
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 dependencies
run: |
python3 -m pip install --upgrade pip
pip install vapoursynth-portable==${{ matrix.versions }}
pip install -r requirements.txt
pip install -r requirements-dev.txt
- name: Running flake8
run: flake8 getfnative
- name: Running mypy
if: steps.dependencies.outcome == 'success'
run: mypy getfnative

0 comments on commit be1b61b

Please sign in to comment.