summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Talbert <swt@techie.net>2022-04-30 20:07:02 -0400
committerGitHub <noreply@github.com>2022-04-30 20:07:02 -0400
commit3bed3a392905750980f0f048960122ed0666fcbd (patch)
tree804c631c91b5ffc9d16de50e1ac63e95c0ea313c
parent59eafb284aa201bae89cacf8b255926ef7bbfce0 (diff)
parenta578a576fec3a836f4fd61430eb24106ccf6cecb (diff)
downloadpycurl-3bed3a392905750980f0f048960122ed0666fcbd.tar.gz
Merge pull request #754 from swt2c/ci_linux_apt_update
Linux CI: run 'apt-get update' before installing packages
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index ab20b4f..bec2e87 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -24,7 +24,9 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install packages
- run: sudo apt-get install libcurl4-gnutls-dev libgnutls28-dev
+ run: |
+ sudo apt-get update
+ sudo apt-get install libcurl4-gnutls-dev libgnutls28-dev
- name: Install dependencies
run: |
python -m pip install --upgrade pip