Correct make download_data #3
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 | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '0 0 1 * *' # Runs at midnight on the first day of every month | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
container: condaforge/mambaforge:latest | |
steps: | |
- uses: actions/[email protected] | |
- name: Setup Conda Environment | |
run: | | |
apt update && apt install -y git make rsync | |
make env | |
- name: Download Data | |
run: | | |
make download_data | |
- name: Test Figure Generation # Rerunning entire study is too slow | |
run: | | |
make figures_only |