Skip to content

Update README.md

Update README.md #438

Workflow file for this run

name: linters
on: [push]
jobs:
linters:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.12']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
pip install -U poetry pip setuptools
poetry --version
poetry install
- name: Run MyPy
run: |
poetry run mypy epsilion_wars_mmorpg_automation/
- name: Run flake8
run: |
poetry run flake8 epsilion_wars_mmorpg_automation/