mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-11 05:27:24 +00:00
fix: no sudo
This commit is contained in:
parent
90b0b6d274
commit
74d3c059b1
1 changed files with 1 additions and 1 deletions
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
|
|
@ -107,7 +107,7 @@ jobs:
|
||||||
python-version: '3.10'
|
python-version: '3.10'
|
||||||
# pip needs LaTeX? https://github.com/actions/setup-python/issues/821#issuecomment-2078641947
|
# pip needs LaTeX? https://github.com/actions/setup-python/issues/821#issuecomment-2078641947
|
||||||
- name: Install LaTeX
|
- name: Install LaTeX
|
||||||
run: sudo apt-get install -y texlive-full
|
run: apt-get install -y texlive-full
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install -r src/scripts/app/requirements.txt
|
run: pip install -r src/scripts/app/requirements.txt
|
||||||
- name: Run tests and collect coverage
|
- name: Run tests and collect coverage
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue