build(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0 in /updater #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: updater | |
on: | |
pull_request: | |
paths: | |
- 'updater/**' | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: Test updater library | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check out code | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
- name: Set up Go 1.22 | |
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5.1.0 | |
with: | |
go-version: 1.22.x | |
id: go | |
- name: Start postgres dependency | |
run: | | |
docker compose -f backend/docker-compose.test.yaml up -d postgres | |
- name: Test library | |
env: | |
NEBRASKA_DB_URL: "postgres://postgres:[email protected]:8001/nebraska_tests?sslmode=disable&connect_timeout=10" | |
run: | | |
cd updater | |
go test -v ./... |