Merge pull request #76 from rohanpm/ci-apt-get-fix

[ci] fix install of OS packages in CI workflows
This commit is contained in:
Rohan McGovern 2024-01-12 08:37:48 +10:00 committed by GitHub
commit ee42465b82
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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