Skip to content

Bump rollup from 4.9.4 to 4.9.5 #341

Bump rollup from 4.9.4 to 4.9.5

Bump rollup from 4.9.4 to 4.9.5 #341

Workflow file for this run

---
name: Build & Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allow this workflow be reused (for example in the release pipeline)
workflow_call:
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
cache: true
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...