Skip to content

fix gh actions checkout version #27

fix gh actions checkout version

fix gh actions checkout version #27

Workflow file for this run

name: CI
on:
push:
branches:
- main
- master
- develop
jobs:
code_analyzer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Set up Python 3.10
uses: actions/setup-python@main
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pylint_runner
- name: Pylint
run: pylint **/*.py