Skip to content

Fix PyPI warnings: add package metadata and enable Trusted Publishing #22

Fix PyPI warnings: add package metadata and enable Trusted Publishing

Fix PyPI warnings: add package metadata and enable Trusted Publishing #22

Workflow file for this run

name: pylint
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5.5.0
with:
python-version: "3.x"
cache: 'pip' # caching pip dependencies
- name: Install dependencies
run: |
python -m pip install pylint pyyaml psutil pytest
- name: Run pylint
run: |
pylint $(find cacts/ -name "*.py" | xargs)