Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/deploy_docu_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:

steps:
- name: Check out the repo containing the docu source
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Check out the repo containing the python pkg DoubleML (dev)
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: DoubleML/doubleml-for-py
path: doubleml-for-py
Expand All @@ -27,7 +27,7 @@ jobs:
run: sudo apt-get install graphviz

- name: Install python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.12'
- name: Install dependencies and the python package
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
shell: Rscript {0}

- name: Cache R packages
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ env.R_LIBS_USER }}
key: doubleml-user-guide-dev-${{ hashFiles('.github/R-version') }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/deploy_docu_stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:

steps:
- name: Check out the repo containing the docu source
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Install graphviz
run: sudo apt-get install graphviz

- name: Install python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.12'
- name: Install dependencies and the python package
Expand Down Expand Up @@ -50,7 +50,7 @@ jobs:
shell: Rscript {0}

- name: Cache R packages
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ env.R_LIBS_USER }}
key: doubleml-user-guide-stable-${{ hashFiles('.github/R-version') }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test_build_docu_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,18 +37,18 @@ jobs:

steps:
- name: Check out the repo containing the docu source
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Check out the repo containing the python pkg DoubleML (dev)
if: ${{ github.event_name != 'workflow_dispatch' }}
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: DoubleML/doubleml-for-py
path: doubleml-for-py

- name: Check out the repo containing the python pkg DoubleML (dev)
if: ${{ github.event_name == 'workflow_dispatch' }}
uses: actions/checkout@v4
uses: actions/checkout@v7
with:
repository: DoubleML/doubleml-for-py
path: doubleml-for-py
Expand All @@ -58,7 +58,7 @@ jobs:
run: sudo apt-get install graphviz

- name: Install python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.12'
- name: Install dependencies and the python package
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
shell: Rscript {0}

- name: Cache R packages
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ env.R_LIBS_USER }}
key: doubleml-test-build-dev-${{ hashFiles('.github/R-version') }}
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
make -C doc linkcheck

- name: Upload html artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build_html
path: doc/_build/html/
8 changes: 4 additions & 4 deletions .github/workflows/test_build_docu_released.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:

steps:
- name: Check out the repo containing the docu source
uses: actions/checkout@v4
uses: actions/checkout@v7

- name: Install graphviz
run: sudo apt-get install graphviz

- name: Install python
uses: actions/setup-python@v5
uses: actions/setup-python@v7
with:
python-version: '3.12'
- name: Install dependencies and the python package
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
shell: Rscript {0}

- name: Cache R packages
uses: actions/cache@v4
uses: actions/cache@v6
with:
path: ${{ env.R_LIBS_USER }}
key: doubleml-test-build-stable-${{ hashFiles('.github/R-version') }}
Expand All @@ -87,7 +87,7 @@ jobs:
make -C doc linkcheck

- name: Upload html artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: build_html
path: doc/_build/html/