Skip to content

Merge pull request #2 from fournjb/dependabot/github_actions/actions/… #20

Merge pull request #2 from fournjb/dependabot/github_actions/actions/…

Merge pull request #2 from fournjb/dependabot/github_actions/actions/… #20

Workflow file for this run

name: linter
on:
push:
paths-ignore:
- '**/README.md'
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install poetry
run: |
curl -sSL https://install.python-poetry.org | python - --version 1.8.3
echo "PATH=${HOME}/.local/bin:${PATH}" >> $GITHUB_ENV
- uses: actions/setup-python@v5
with:
cache: 'poetry'
- run: poetry install
- name: Run Tests
run: poetry run pylint **/*.py