Fix/window event race condition #1263
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: Python CI | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
run-ci: | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
matrix: | |
# TODO: add windows matrix | |
os: [macos-latest] | |
env: | |
REPO: ${{ github.event.pull_request.head.repo.full_name }} | |
BRANCH: ${{ github.event.pull_request.head.ref }} | |
SKIP_POETRY_SHELL: 1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
with: | |
ref: ${{ env.BRANCH }} | |
repository: ${{ env.REPO }} | |
- name: Set up Python | |
uses: actions/setup-python@v3 | |
with: | |
python-version: '3.10' | |
- name: Run tests using the shell script (macOS compatible). | |
if: matrix.os == 'macos-latest' | |
run: sh install/install_openadapt.sh | |
- name: Install poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.5.1 | |
virtualenvs-create: true | |
virtualenvs-in-project: true | |
- name: Cache deps | |
id: cache-deps | |
uses: actions/cache@v2 | |
with: | |
path: .venv | |
key: pydeps-${{ hashFiles('**/poetry.lock') }} | |
- run: poetry install --no-interaction --no-root | |
if: steps.cache-deps.outputs.cache-hit != 'true' | |
- name: Activate virtualenv | |
run: source .venv/bin/activate | |
if: steps.cache-deps.outputs.cache-hit == 'true' | |
- name: Check formatting with Black | |
run: poetry run black --preview --check . --exclude '/(alembic|\.cache|\.venv|venv|contrib|__pycache__)/' | |
- name: Run Flake8 | |
run: poetry run flake8 --exclude=alembic,.venv,venv,contrib,.cache,.git |