Skip to content

try ignoring docs, installing package #2

try ignoring docs, installing package

try ignoring docs, installing package #2

Workflow file for this run

# This workflow will install Python dependencies, lint and run tests with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
# TODO: switch to the cached version
name: linting
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
linter: [pylint, mypy, flake8]
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: 3.8
poetry-version: 1.2.2
- uses: advanced-security/python-lint-code-scanning-action@v1
with:
linter: ${{ matrix.linter }}