Skip to content

Commit

Permalink
Added an apt-get update to CI before trying to install new system dep…
Browse files Browse the repository at this point in the history
…endencies.
  • Loading branch information
canismarko committed Dec 18, 2023
1 parent 32ee5ed commit 8372bb6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/python-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up required system dependencies
run: sudo apt-get -y install pdftk texlive-latex-base texlive-latex-extra texlive-fonts-recommended texlive-fonts-extra
run: |
sudo apt-get update
sudo apt-get -y install pdftk texlive-latex-base texlive-latex-extra texlive-fonts-recommended texlive-fonts-extra
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 8372bb6

Please sign in to comment.