mirror of
https://github.com/release-engineering/repo-autoindex.git
synced 2025-02-23 21:52:52 +00:00
Merge pull request #76 from rohanpm/ci-apt-get-fix
[ci] fix install of OS packages in CI workflows
This commit is contained in:
commit
ee42465b82
1 changed files with 4 additions and 2 deletions
6
.github/workflows/docs.yml
vendored
6
.github/workflows/docs.yml
vendored
|
@ -15,8 +15,10 @@ jobs:
|
|||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.9
|
||||
- name: Install system dependencies
|
||||
run: sudo apt-get install -y libkrb5-dev
|
||||
- name: Install OS packages
|
||||
run: |
|
||||
sudo apt-get -y update
|
||||
sudo apt-get install -y libkrb5-dev
|
||||
- name: Install Tox
|
||||
run: pip install tox
|
||||
- name: Run Tox
|
||||
|
|
Loading…
Add table
Reference in a new issue