Update README.md #438
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |