Skip to content

3: city temperature

3: city temperature #6

Workflow file for this run

name: Lint Python Code
on:
- push
- workflow_dispatch
jobs:
run_python_linter:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install Python 3
run: |
sudo apt update
sudo apt install python3-pip
- name: Install dependencies
run: cd app && pip install -r requirements.txt
- name: Install linter
run: pip install pylint
- name: Run linter
run: cd app && pylint *.py