diff options
author | Nikias Bassen | 2021-09-21 03:23:24 +0200 |
---|---|---|
committer | Nikias Bassen | 2021-09-21 03:23:24 +0200 |
commit | cf7a3f3d7c06b197ee71c9f97eb9aa05f26d63b5 (patch) | |
tree | dc4ce8a846962ddb9c7f1440f23f69fd854c9dc2 /.github | |
parent | 97d46c92ba1657f6f0287cc83d4ec8ed1a2c6903 (diff) | |
download | libplist-cf7a3f3d7c06b197ee71c9f97eb9aa05f26d63b5.tar.gz libplist-cf7a3f3d7c06b197ee71c9f97eb9aa05f26d63b5.tar.bz2 |
[github-actions] Add an explicit apt-get update before attempting to install packages on ubuntu
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index aff2502..413513a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,6 +8,7 @@ jobs: steps: - name: install dependencies run: | + sudo apt-get update sudo apt-get install cython3 - name: prepare environment run: | |