Skip to content

Update module github.com/PuerkitoBio/goquery to v1.9.1 #213

Update module github.com/PuerkitoBio/goquery to v1.9.1

Update module github.com/PuerkitoBio/goquery to v1.9.1 #213

Workflow file for this run

name: Go Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.13
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install user dependencies
run: |
sudo apt-get update
sudo apt-get install wkhtmltopdf xvfb
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Test
run: xvfb-run go test -v ./...