Interface cleanup: wrapper mode default #95
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: Sanity | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
sanity: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Update pip | |
run: python3 -m pip install --upgrade pip | |
- name: Install dependencies | |
run: python3 -m pip install mypy | |
- name: Install in editable mode | |
run: python3 -m pip install -e . | |
- name: Install in development mode | |
run: python3 -m pip install .[dev] | |
- name: Run mypy | |
run: python3 -m mypy src/**/*.py tests/*.py | |
- name: Check version through Python | |
run: python3 -m cwhy --version | |
- name: Check version | |
run: cwhy --version |