Skip to content

Commit

Permalink
Fix CI: Run apt-get update before install (#316)
Browse files Browse the repository at this point in the history
Co-authored-by: Adam Johnson <me@adamj.eu>

fix yaml
  • Loading branch information
intgr committed Jan 9, 2023
1 parent 728da9c commit 93c21c5
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Expand Up @@ -35,7 +35,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup system dependencies
run: sudo apt-get install binutils libproj-dev gdal-bin
run: |
sudo apt-get update
sudo apt-get install binutils libproj-dev gdal-bin
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand All @@ -56,7 +58,9 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: Setup system dependencies
run: sudo apt-get install binutils libproj-dev gdal-bin
run: |
sudo apt-get update
sudo apt-get install binutils libproj-dev gdal-bin
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
Expand Down

0 comments on commit 93c21c5

Please sign in to comment.