Update README.rst #228
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: Push to Master | |
on: | |
push: | |
branches: [master] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
# Required for daysim | |
- name: Install Dependencies | |
run: | | |
export DEBIAN_FRONTEND=noninteractive | |
sudo apt-get clean && sudo apt-get update | |
sudo apt-get install -y libgl1 | |
- name: Install Conda environment with Micromamba | |
uses: mamba-org/setup-micromamba@v1 | |
with: | |
environment-file: environment.yml | |
cache-environment: true | |
- name: Install CEA | |
shell: bash -l {0} | |
run: pip install . | |
- name: Run tests | |
shell: bash -l {0} | |
run: cea test --workflow slow |