Skip to content

Bump github.com/andybalholm/cascadia from 1.3.3 to 1.3.4 in the go-modules group #197

Bump github.com/andybalholm/cascadia from 1.3.3 to 1.3.4 in the go-modules group

Bump github.com/andybalholm/cascadia from 1.3.3 to 1.3.4 in the go-modules group #197

Workflow file for this run

name: Go
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "stable"
- name: Build
run: go build -v ./cmd/...
- name: vet
run: go vet ./...
- name: Tests
run: go test -v ./...
run_modver:
runs-on: ubuntu-latest
needs: build # Only run when build job was successful
if: ${{ github.event_name == 'pull_request' && success() }}
permissions:
contents: read # Modver needs to read the repo content
pull-requests: write # Modver needs to write comments/status on PRs
steps:
- name: Checkout
uses: actions/checkout@v6
with:
fetch-depth: 0 # Modver needs full history for comparison
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: "stable"
- name: Modver
uses: bobg/modver@v2.14.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
pull_request_url: https://github.com/${{ github.repository }}/pull/${{ github.event.number }}