-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7520 from chrahunt/maint/cross-platform-lints
Run linters/docs on Windows and macOS
- Loading branch information
Showing
6 changed files
with
35 additions
and
14 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 |
---|---|---|
|
@@ -17,6 +17,8 @@ jobs: | |
matrix: | ||
os: | ||
- ubuntu-18.04 | ||
- windows-latest | ||
- macos-latest | ||
env: | ||
- TOXENV: docs | ||
- TOXENV: lint | ||
|
@@ -33,11 +35,14 @@ jobs: | |
path: ~/.cache/pre-commit | ||
key: pre-commit|${{ env.PY }}|${{ hashFiles('.pre-commit-config.yaml') }} | ||
- name: Pre-configure global Git settings | ||
run: >- | ||
tools/travis/setup.sh | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "pip" | ||
- name: Update setuptools and tox dependencies | ||
run: >- | ||
tools/travis/install.sh | ||
run: | | ||
python -m pip install --upgrade setuptools | ||
python -m pip install --upgrade tox tox-venv | ||
python -m pip freeze --all | ||
- name: 'Initialize tox envs: ${{ matrix.env.TOXENV }}' | ||
run: >- | ||
python -m tox --notest --skip-missing-interpreters false | ||
|
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
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
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
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
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