Skip to content

Test Scrapers

Test Scrapers #852

Workflow file for this run

name: Test Scrapers
on:
schedule:
- cron: '0 0 * * *' # Runs at 00:00 UTC every day
jobs:
# make sure our scrapers are still working
test:
strategy:
matrix:
go-version: [1.18.x, 1.19.x, 1.20.x]
runs-on: ubuntu-latest
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: Tidy
run: go mod tidy
- name: Test
run: go test -v ./...