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
7 changes: 5 additions & 2 deletions .github/workflows/PythonTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ jobs:
SIRIUS_PW: ${{ secrets.SIRIUS_PW }}
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
Expand Down Expand Up @@ -72,6 +70,11 @@ jobs:
unzip -q sirius-${version}-linux-x64.zip
- name: Change HOME to working directory of runner
run: echo "HOME=/home/runner/work/sirius-client-openAPI" >> $GITHUB_ENV
- name: Download tomato_small project space
run: |
wget -nv ${{ secrets.TOMATO_SMALL_DOWNLOAD_LINK }} -O tomato_small.sirius
chmod 666 tomato_small.sirius
working-directory: .updater/clientTests/Data
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/RTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,6 @@ jobs:
SIRIUS_PW: ${{ secrets.SIRIUS_PW }}
steps:
- uses: actions/checkout@v3
with:
lfs: true
- name: Set up R ${{ matrix.r-version }}
uses: r-lib/actions/setup-r@v2
with:
Expand Down Expand Up @@ -75,6 +73,11 @@ jobs:
unzip -q sirius-${version}-linux-x64.zip
- name: Change HOME to working directory of runner
run: echo "HOME=/home/runner/work/sirius-client-openAPI" >> $GITHUB_ENV
- name: Download tomato_small project space
run: |
wget -nv ${{ secrets.TOMATO_SMALL_DOWNLOAD_LINK }} -O tomato_small.sirius
chmod 666 tomato_small.sirius
working-directory: .updater/clientTests/Data
- name: Check SIRIUS download
run: |
echo "Show content of cache download (.updater/api/)"
Expand Down