Skip to content

Commit

Permalink
Move setup steps to a script
Browse files Browse the repository at this point in the history
  • Loading branch information
orangejulius committed Nov 25, 2024
1 parent 495a634 commit b8de7d1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,6 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '${{ matrix.node-version }}'
- name: Install dependencies
run: |
sudo add-apt-repository -y ppa:ubuntugis/ppa
sudo apt-get update -q
sudo apt-get install -y proj-bin gdal-bin
- name: Run unit tests
run: |
[[ -d ./bin/ci-setup ]] && ./bin/ci-setup
Expand Down
5 changes: 5 additions & 0 deletions bin/ci-setup
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/bash

sudo add-apt-repository -y ppa:ubuntugis/ppa
sudo apt-get update -q
sudo apt-get install -y proj-bin gdal-bin

0 comments on commit b8de7d1

Please sign in to comment.