Skip to content

Bump astro from 7.0.3 to 7.1.3 in /docs in the npm_and_yarn group across 1 directory #410

Bump astro from 7.0.3 to 7.1.3 in /docs in the npm_and_yarn group across 1 directory

Bump astro from 7.0.3 to 7.1.3 in /docs in the npm_and_yarn group across 1 directory #410

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: Download dependencies
run: go mod download
- name: Vet
run: go vet ./...
- name: Test
run: go test -race -count=1 ./...