Skip to content

Create sweep.yaml

Create sweep.yaml #3

Workflow file for this run

name: Pylint
on: [push, pull_request]
jobs:
pylint:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
- name: Set up Python 3.x
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install pylint
- name: Run Pylint
run: pylint src/*.py