Skip to content

Commit

Permalink
Merge pull request #30 from richelbilderbeek/fix_check
Browse files Browse the repository at this point in the history
Fix 'check.yaml', fix #26
  • Loading branch information
kausmees committed Feb 22, 2022
2 parents 724e1df + 2c5c814 commit 5f9392d
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
# For help debugging build failures open an issue on the RStudio community with the 'github-actions' tag.
# https://community.rstudio.com/new-topic?category=Package%20development&tags=github-actions
# Determine if GCAE can do a minimal run
on:
push:
pull_request:
Expand All @@ -17,15 +16,17 @@ jobs:

- uses: r-lib/actions/setup-r@v1

- name: Install libgit2-dev
run: sudo apt install -qq libgit2-dev

- name: Install libcurl4-openssl-dev
run: sudo apt install -qq libcurl4-openssl-dev

- name: Install dependencies
run: pip3 install -r requirements.txt
- name: Install python3-pip, thanks Pavlin Mitev
run: |
sudo apt install -qq python3-pip
python3 -m pip install --upgrade pip
- name: Install dependencies using python3, thanks Pavlin Mitev
run: python3 -m pip install -r requirements.txt

- name: Training and evaluation of models help
- name: Show help
run: python3 run_gcae.py --help

0 comments on commit 5f9392d

Please sign in to comment.