Skip to content

Commit

Permalink
debugging env
Browse files Browse the repository at this point in the history
  • Loading branch information
miloswrath committed Dec 2, 2024
1 parent 3d44c04 commit 5a2c7e9
Showing 1 changed file with 3 additions and 21 deletions.
24 changes: 3 additions & 21 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ permissions:
pages: write

jobs:
install-py-reqs:
name: Install Python Requirements
run-everything:
name: run everything all at once
runs-on: ubuntu-latest
steps:

Expand All @@ -43,37 +43,19 @@ jobs:
- name: Install Python requirements
run: pip install -r requirements.txt

install-r-reqs:
name: Install R Requirements
runs-on: ubuntu-latest
needs: install-py-reqs

steps:
- name: checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: dev
- name: debug env
run: |
echo "current wkdir:"
pwd
echo "files in dir"
ls -a
- name: Set up R
uses: r-lib/actions/setup-r@v2

- name: Install R requirements
run: Rscript R_requirements.R

run-orchestrator:
name: Run Orchestrator
runs-on: ubuntu-latest
needs: install-r-reqs
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run orchestrator script
run: |
current_date=$(date +"%Y-%m-%d")
Expand Down

0 comments on commit 5a2c7e9

Please sign in to comment.