Skip to content

Clarify and fix when an inline diff view is historical, when it is dynamic, and when interactive #933

Clarify and fix when an inline diff view is historical, when it is dynamic, and when interactive

Clarify and fix when an inline diff view is historical, when it is dynamic, and when interactive #933

Workflow file for this run

name: CI
on:
push:
branches:
- master
pull_request:
merge_group:
jobs:
check-messages:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: kaste/upgrade-messages-test-action@v1
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: pip install "flake8<6.0.0"
- uses: TrueBrain/actions-flake8@v2
mypy:
strategy:
fail-fast: false
matrix:
platform: ['linux', 'darwin', 'win32']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install mypy
run: |
pip install mypy
- name: Check with mypy
run: |
mypy git_savvy.py --platform=${{ matrix.platform }}