Skip to content

fix(deps): update golang.org/x/exp digest to 701f63a #685

fix(deps): update golang.org/x/exp digest to 701f63a

fix(deps): update golang.org/x/exp digest to 701f63a #685

Workflow file for this run

---
name: Linting and Test
# Run for all pushes to main and pull requests when Go or YAML files change
on:
push:
branches:
- main
pull_request:
jobs:
golangci:
name: lint-and-test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Install cockroach binary
run: curl https://binaries.cockroachdb.com/cockroach-v23.1.23.linux-amd64.tgz | tar -xz && sudo cp -i cockroach-v23.1.23.linux-amd64/cockroach /usr/local/bin/
- name: Start test database
run: cockroach start-single-node --insecure --background
- name: Create test DB
run: make test-database
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.57.1
args: --timeout=5m
skip-cache: true
- name: Run go tests and generate coverage report
run: FLEETDB_CRDB_URI="host=localhost port=26257 user=root sslmode=disable dbname=fleetdb_test" go test -race -coverprofile=coverage.txt -covermode=atomic -tags testtools -p 1 ./...
- name: Stop test database
run: cockroach node drain --insecure --host=localhost:26257
- name: Upload coverage report
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: ./coverage.txt
flags: unittests
name: codecov-umbrella