Skip to content

Merge branch 'master' of github.com:AssassinTee/SimpleDDNetAutomapper #40

Merge branch 'master' of github.com:AssassinTee/SimpleDDNetAutomapper

Merge branch 'master' of github.com:AssassinTee/SimpleDDNetAutomapper #40

Workflow file for this run

name: Lint Code
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
architecture: ['x64']
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- name: Install Dependencies
run: |
pip install -r requirements.txt
- name: Run Linting
run: flake8 .