Automated deployment to update Member Map 2024-02-08 (#129) #94
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: CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches_ignore: [] | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Setup conda environment | |
run: conda create --quiet --name usrse-map pytest | |
- name: Run tests | |
run: | | |
export PATH="/usr/share/miniconda/bin:$PATH" | |
source activate usrse-map | |
pip install -r requirements.txt | |
pytest -v -x tests/test_*.py |