Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
EfimovVladimir committed Nov 26, 2020
1 parent 5c97ed6 commit 0f4b01a
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 1.11
- name: Cache gradle
uses: actions/cache@v2
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle
- name: Cache Conda
uses: actions/cache@v1
with:
Expand Down Expand Up @@ -57,9 +64,10 @@ jobs:
chmod +x gradlew
./gradlew install
- name: Update conda package
shell: bash
run:
conda env create -n beakerx -f configuration.yml
shell: bash -l {0}
run: |
cd $GITHUB_WORKSPACE/beakerx_tests/dev_scripts
conda env create -n beakerx -f configuration.yml
- name: Build Groovy Kernel
shell: bash -l {0}
run: |
Expand Down

0 comments on commit 0f4b01a

Please sign in to comment.