-
-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
16 additions
and
18 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 |
---|---|---|
|
@@ -25,22 +25,6 @@ jobs: | |
python-version-file: .python-version-default | ||
- uses: pre-commit/[email protected] | ||
|
||
install-dev: | ||
name: Verify dev env | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version-file: .python-version-default | ||
cache: pip | ||
|
||
- name: Install in dev mode & import | ||
run: | | ||
python -Im pip install -e .[dev] | ||
python -Ic 'import subliminal; print(subliminal.__version__)' | ||
typing: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
|
@@ -76,6 +60,22 @@ jobs: | |
name: docs | ||
path: docs/_build/ | ||
|
||
install-dev: | ||
name: Verify install env | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v5 | ||
with: | ||
python-version-file: .python-version-default | ||
cache: pip | ||
|
||
- name: Install in dev mode & import | ||
run: | | ||
python -Im pip install -e .[dev] | ||
python -Ic 'import subliminal; print(subliminal.__version__)' | ||
build-package: | ||
name: Build & verify package | ||
runs-on: ubuntu-latest | ||
|
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