Fix dialog window not auto closing after 60s #97
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: Linting | |
on: [pull_request] | |
jobs: | |
ruff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out code from GitHub | |
uses: actions/checkout@v4 | |
- uses: chartboost/ruff-action@v1 | |
with: | |
src: './src' | |
mypy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⤵️ Check out code from GitHub | |
uses: actions/checkout@v4 | |
- name: 🐍 Set up Python 3.9 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.9' | |
- name: 🐍 Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install mypy | |
pip install -r requirements.txt | |
- name: 🔍 Lint with Pylint | |
run: mypy src |