Skip to content
Open
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ on:
push:
branches:
- master
- "*"
pull_request:


Expand All @@ -21,7 +20,6 @@ jobs:
- {os: ubuntu-16.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/xenial/latest"}
- {os: ubuntu-18.04, r: 'release', rspm: "https://packagemanager.rstudio.com/cran/__linux__/bionic/latest"}

container: pecan/depends:develop
services:
postgres:
image: mdillon/postgis:9.5
Expand Down Expand Up @@ -49,7 +47,9 @@ jobs:
- uses: actions/checkout@v2

- name: install utils
run: apt-get update && apt-get install -y openssh-client postgresql-client curl
run: |
sudo apt-get update
sudo apt-get install -y openssh-client postgresql-client curl

- name: db setup
uses: docker://pecan/db:ci
Expand Down