-
Notifications
You must be signed in to change notification settings - Fork 160
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 #604 from vidartf/fix-build
Fixes for GHA CI
- Loading branch information
Showing
2 changed files
with
4 additions
and
66 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 |
---|---|---|
|
@@ -11,7 +11,7 @@ jobs: | |
- name: Set up Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: 3.7 | ||
python-version: 3.8 | ||
- uses: actions/cache@v1 | ||
with: | ||
path: ~/.cache/pip | ||
|
@@ -22,8 +22,8 @@ jobs: | |
run: | | ||
sudo apt-get install -y pandoc | ||
python -m pip install --upgrade pip | ||
python -m pip install file://$PWD#egg=ipywidgets | ||
python -m pip install -r ./docs/requirements.txt | ||
python -m pip install .[docs] | ||
python -m pip install -r ./docs/doc-requirements.txt | ||
- name: Build docs | ||
run: | | ||
cd docs | ||
|
@@ -70,6 +70,7 @@ jobs: | |
run: | | ||
python -m pip install --upgrade --upgrade-strategy=eager -e ".[test]" | ||
npm test | ||
codecov | ||
env: | ||
CI: true | ||
python: | ||
|
@@ -102,7 +103,6 @@ jobs: | |
run: | | ||
git config --global user.email [email protected] | ||
git config --global user.name "CI" | ||
pytest --cov=ipywidgets ipywidgets | ||
pushd $(mktemp -d) | ||
py.test -l --cov-report xml --cov=nbdime --pyargs nbdime | ||
codecov | ||
|
This file was deleted.
Oops, something went wrong.