-
Notifications
You must be signed in to change notification settings - Fork 317
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 #1446 from jhamrick/0.6.x
Prepare for 0.6.2 release
- Loading branch information
Showing
16 changed files
with
164 additions
and
188 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,84 @@ | ||
# This is a GitHub workflow defining a set of jobs with a set of steps. | ||
# ref: https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-syntax-for-github-actions | ||
# | ||
name: Test | ||
|
||
on: | ||
pull_request: | ||
branches: ["**"] | ||
push: | ||
branches: [main, master] | ||
tags: ["**"] | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
test_nbgrader: | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 20 | ||
|
||
env: | ||
# NOTE: UTF-8 content may be interpreted as ascii and causes errors | ||
# without this. | ||
LANG: C.UTF-8 | ||
MOZ_HEADLESS: 1 | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: [windows-latest, ubuntu-20.04] | ||
group: ["docs", "nbextensions", "python"] | ||
python: ["3.6", "3.7", "3.8", "3.9"] | ||
exclude: | ||
- os: windows-latest | ||
group: docs | ||
- python: "3.6" | ||
group: docs | ||
- python: "3.7" | ||
group: docs | ||
- python: "3.8" | ||
group: docs | ||
- python: "3.6" | ||
group: nbextensions | ||
- python: "3.7" | ||
group: nbextensions | ||
steps: | ||
# This is how you set an environment variable in a GitHub workflow that | ||
# will be available in following steps as if you would used `export | ||
# MY_ENV=my-value`. | ||
- name: Configure environment variables from job flags | ||
run: | | ||
if [ "${{ matrix.group }}" == "docs" ]; then | ||
echo "GROUP=docs" >> $GITHUB_ENV | ||
fi | ||
if [ "${{ matrix.group }}" == "nbextensions" ]; then | ||
echo "GROUP=nbextensions" >> $GITHUB_ENV | ||
fi | ||
if [ "${{ matrix.group }}" == "python" ]; then | ||
echo "GROUP=python" >> $GITHUB_ENV | ||
fi | ||
- uses: actions/checkout@v2 | ||
# NOTE: actions/setup-python@v2 can make use of a cache within the GitHub | ||
# Action virtual environment and setup extremely fast. 3.9 isn't | ||
# available in this cache as of November 2020. | ||
- name: Install Python ${{ matrix.python }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python }} | ||
- name: Run pre-commit | ||
if: matrix.group == 'docs' | ||
run: | | ||
sudo apt-get install pandoc | ||
- name: Install Python dependencies | ||
run: | | ||
python -m pip install --upgrade pip wheel setuptools | ||
python tasks.py install --group="$GROUP" | ||
pip freeze | ||
- name: Run pytest | ||
run: | | ||
python tasks.py tests --group="$GROUP" | ||
# - name: Submit codecov report | ||
# run: | | ||
# codecov |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
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
Oops, something went wrong.