Skip to content

ci: Updated GitHub actions versions, and python versions. #11

ci: Updated GitHub actions versions, and python versions.

ci: Updated GitHub actions versions, and python versions. #11

Workflow file for this run

name: flake8
on:
push:
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Analyzing the code with flake8
run: |
flake8 `ls -R|grep .py$|xargs`