Test running a task #183
Workflow file for this run
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: Test Run | |
on: [push, pull_request] | |
jobs: | |
test-run: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository files | |
uses: actions/checkout@v2 | |
- name: Edit Makefile | |
run: | | |
sed -i 's/^NUM_GPUS=8/NUM_GPUS=0/' Makefile | |
sed -i 's/^SHARED_ROOT.*/SHARED_ROOT=\/tmp/' Makefile | |
- name: Install necessary dependencies | |
run: | | |
make conda | |
make snakemake | |
make git-modules | |
- name: Dry run | |
run: make dry-run |