-
Notifications
You must be signed in to change notification settings - Fork 70
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 #451 from jGaboardi/gh_actions
Trying out GitHub Actions for additional testing
- Loading branch information
Showing
1 changed file
with
63 additions
and
0 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,63 @@ | ||
on: | ||
push: | ||
branches: | ||
- '*' | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
jobs: | ||
conda_36_ubuntu: | ||
name: conda python 3.6 - ubuntu | ||
runs-on: 'ubuntu-latest' | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: goanpeca/setup-miniconda@v1 | ||
with: | ||
activate-environment: test | ||
environment-file: ci/travis/36-latest-conda-forge-PYPI.yaml | ||
python-version: 3.6 | ||
auto-activate-base: false | ||
- shell: bash -l {0} | ||
run: | | ||
conda info | ||
conda list | ||
python setup.py install | ||
py.test -v spaghetti --doctest-modules | ||
conda_37_ubuntu: | ||
name: conda python 3.7 - ubuntu | ||
runs-on: 'ubuntu-latest' | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: goanpeca/setup-miniconda@v1 | ||
with: | ||
activate-environment: test | ||
environment-file: ci/travis/37-latest-conda-forge-PYPI.yaml | ||
python-version: 3.7 | ||
auto-activate-base: false | ||
- shell: bash -l {0} | ||
run: | | ||
conda info | ||
conda list | ||
python setup.py install | ||
py.test -v spaghetti --doctest-modules | ||
conda_38_ubuntu: | ||
name: conda python 3.8 - ubuntu | ||
runs-on: 'ubuntu-latest' | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: goanpeca/setup-miniconda@v1 | ||
with: | ||
activate-environment: test | ||
environment-file: ci/travis/38-latest-conda-forge-PYPI.yaml | ||
python-version: 3.8 | ||
auto-activate-base: false | ||
- shell: bash -l {0} | ||
run: | | ||
conda info | ||
conda list | ||
python setup.py install | ||
py.test -v spaghetti --doctest-modules | ||