2023-09-22 18:52:28 -04:00
|
|
|
name: Pylint
|
|
|
|
on: [push]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
Pylint:
|
|
|
|
runs-on: docker
|
|
|
|
container: catthehacker/ubuntu:act-latest
|
|
|
|
steps:
|
2023-09-22 19:17:18 -04:00
|
|
|
- name: Checkout
|
2023-09-23 08:25:00 -04:00
|
|
|
uses: actions/checkout@v3.6.0
|
2023-09-22 19:17:18 -04:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.COASTALCOMMITSTOKEN}}
|
2023-09-24 07:58:16 -04:00
|
|
|
- name: Set up Python 3.11
|
2023-09-24 07:55:45 -04:00
|
|
|
run: |
|
|
|
|
add-apt-repository ppa:deadsnakes/ppa
|
2023-09-24 13:02:41 -04:00
|
|
|
apt install -y python3.11 gcc python3.11-dev python3.11-venv
|
2023-09-24 12:29:58 -04:00
|
|
|
- name: Install Poetry
|
2023-09-24 13:00:34 -04:00
|
|
|
run: curl -sSL https://url.seaswimmer.cc/poetry | python3.11 -
|
2023-09-22 18:52:28 -04:00
|
|
|
- name: Install dependencies
|
2023-09-24 12:48:15 -04:00
|
|
|
run: |
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
2023-09-24 12:52:07 -04:00
|
|
|
poetry env use 3.11
|
2023-09-24 12:48:15 -04:00
|
|
|
poetry install --with dev
|
2023-09-24 12:23:15 -04:00
|
|
|
- name: Analysing the code with Pylint
|
2023-09-24 12:48:15 -04:00
|
|
|
run: |
|
|
|
|
export PATH="$HOME/.local/bin:$PATH"
|
|
|
|
poetry run pylint $(git ls-files '*.py')
|