Update gds_py_explicit_windows-latest.txt to 10.0 #41
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
name: MacOS-Test GDS Environment (Python) | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
Test: | |
name: macos-latest | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup Conda | |
uses: conda-incubator/setup-miniconda@v2 | |
with: | |
auto-update-conda: true | |
auto-activate-base: true | |
miniforge-version: latest | |
miniforge-variant: Mambaforge | |
use-mamba: true | |
- name: Set up GDS Env | |
shell: bash -l {0} | |
run: | | |
mamba env create -f gds_py/gds_py.yml | |
- name: Check and Log Environment | |
shell: bash -l {0} | |
run: | | |
conda activate gds | |
conda info | |
# Print conda list | |
conda list | |
- name: Test Environment | |
shell: bash -l {0} | |
continue-on-error: false | |
run: | | |
conda activate gds | |
jupyter nbconvert --to html --execute gds_py/check_py_stack.ipynb | |
- name: Write Explicit Stack | |
shell: bash -l {0} | |
continue-on-error: false | |
run: | | |
conda activate gds | |
conda list --explicit | |
conda list --explicit > gds_py/gds_py_explicit_macos-latest.txt | |
- name: Commit file | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "GitHub Action" | |
git add gds_py/gds_py_explicit_macos-latest.txt | |
git commit -m "Update explicit MacOS file" --allow-empty | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
force: true |