Deleted travis. #4
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: Continuous Integration | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
activate-environment: ruspy_analysis | |
environment-file: environment.yml | |
python-version: 3.8 | |
auto-activate-base: false | |
- name: execute notebooks | |
shell: bash -l {0} | |
run: | | |
export PATH="$PATH:/usr/share/miniconda/bin" | |
source .envrc | |
git submodule init | |
git submodule update | |
execute-notebooks |