Skip to content

Update lint.yml

Update lint.yml #2

Workflow file for this run

name: Python CI
on:
push:
branches:
- main # Change this to your project's main branch
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install -r requirements.txt