Skip to content

adj pylint.yml

adj pylint.yml #11

Workflow file for this run

name: Pylint
on:
push:
branches:
- main
pull_request:
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install pytest
- name: Run tests
run: |
pytest dlq_py/tests