forked from sotopia-lab/sotopia
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Splitting tests.yml (sotopia-lab#102)
* π· improve CI by splitting tests.yml * π add [dev] to pip * π· name of ci
- Loading branch information
Showing
2 changed files
with
31 additions
and
11 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Mypy | ||
on: [push] | ||
|
||
jobs: | ||
Static-Type-Checking: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
max-parallel: 5 | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Set up Python 3.11 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: 3.11.2 | ||
- name: Install dependencies | ||
run: | | ||
pip install --upgrade pip | ||
pip install -r requirements.txt | ||
pip install -e .[dev] | ||
- name: Type-checking package with mypy | ||
run: | | ||
# Manually install mypy in the standard way. | ||
pip --quiet install -U mypy | ||
# Log this mypy version for debuggability. | ||
mypy --version | ||
# Run this mypy instance against our main package. | ||
mypy --install-types --non-interactive sotopia | ||
mypy --strict . |
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