forked from sandialabs/pyapprox
-
Notifications
You must be signed in to change notification settings - Fork 0
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
55 additions
and
1 deletion.
There are no files selected for viewing
54 changes: 54 additions & 0 deletions
54
.github/workflows/continuous-integration-workflow-conda-ubuntu-python3.8.yml
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,54 @@ | ||
name: Build and Test Using Conda | ||
|
||
on: | ||
push: | ||
# branches: [master, devel] | ||
branches: [master] | ||
|
||
workflow_dispatch: | ||
|
||
|
||
# # schedule: | ||
# # # * is a special character in YAML so you have to quote this string | ||
# # - cron: '*/0 * * * *' # run once a day | ||
|
||
|
||
jobs: | ||
pyapprox_unit_tests: | ||
name: Setup Pyapprox dependencies with conda | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
# quotes needed around two-digit versions | ||
python-version: [3.8] | ||
os: [ubuntu-latest] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Miniconda with Python ${{ matrix.python-version }} on ${{ matrix.os }} | ||
uses: conda-incubator/setup-miniconda@v2 | ||
with: | ||
activate-environment: pyapprox-base | ||
python-version: ${{ matrix.python-version }} | ||
# channels: defaults,conda-forge | ||
channels: defaults | ||
environment-file: environment.yml | ||
auto-update-conda: true | ||
# use-only-tar-bz2: true | ||
auto-activate-base: false | ||
- name: Conda list | ||
shell: bash -l {0} # - l {0} is needed to activate created env | ||
run: | | ||
conda list | ||
conda env list | ||
- name: Setup PyApprox | ||
shell: bash -l {0} | ||
run: | | ||
pip install -e . | ||
- name: Test PyApprox | ||
shell: bash -l {0} | ||
run: | | ||
pytest -s --cov-report term --cov=pyapprox | ||
# -s disables capturing stdout so print statements print to screen | ||
# python setup.py test |
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