diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7cce992..1ccc42d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -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 \ No newline at end of file + 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 getfscaler + - name: Running mypy + if: steps.dependencies.outcome == 'success' + run: mypy getfscaler