updating aplib dependency to v1.8.6 #219
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: PythonClient | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
name: Checks | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- run: pip install --upgrade pip | |
- run: pip install black pylint mypy | |
- run: black --diff --check $(git ls-files '*.py') | |
- run: | | |
echo Running pylint | |
cd PythonClient/ | |
pylint spaceengineers/ features/ #$(git ls-files 'spaceengineers/*.py' 'features/*.py') | |
mypy spaceengineers/ features/ | |