Skip to content

remove PDF viewer from Code as it LaTeX workshop includes one already #49

remove PDF viewer from Code as it LaTeX workshop includes one already

remove PDF viewer from Code as it LaTeX workshop includes one already #49

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 "action@github.com"
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