update poetry lock file to be compatible with new version of poetry #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |