8000 Merge pull request #71 from kinoute/dependabot/go_modules/golang.org/x/text-0.26.0 · kinoute/moviestills@08abbbe · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Test Scrapers

Test Scrapers #1143

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.22.x, 1.23.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 ./...
0