Skip to content

Commit

Permalink
setup python
Browse files Browse the repository at this point in the history
  • Loading branch information
isidroas committed Dec 10, 2024
1 parent f06f308 commit 9eed25d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
# uses: actions/setup-python@v5
# with:
# python-version: ${{ matrix.python-version }}
- uses: actions/setup-python@v5
- uses: actions/checkout@v4
- uses: actions/cache@v4
id: cache-id
Expand All @@ -25,7 +26,17 @@ jobs:
# TODO: find a quicker method. Currently the download is fast but the installation is slow
# In total, it takes 5min
if: steps.cache-id.outputs.cache-hit != 'true'
env:
CACHE_HIT: ${{steps.cache-id.outputs.cache-hit}}
run: sudo apt install texlive-full
# run: |
# if [[ "$CACHE_HIT" == 'true' ]]; then
# sudo cp --verbose --force --recursive ~/texlive/* /usr/share
# else
# sudo apt-get install texlive-full
# mkdir -p ~/valgrind
# sudo cp --parents --target-directory /usr/share/* ~/texlive/
# fi
- name: Install fonts
run: |
./.github/workflows/install_nerd_fonts.sh
Expand Down

0 comments on commit 9eed25d

Please sign in to comment.