Skip to content

chore: update changelog for v0.0.75 #806

chore: update changelog for v0.0.75

chore: update changelog for v0.0.75 #806

Workflow file for this run

name: Run Tests
permissions:
contents: read
on:
pull_request:
push:
branches: [ main ]
workflow_dispatch:
jobs:
test:
name: Run make test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
cache: true
- name: Install dependencies
run: |
# Install any dependencies required for testing
go mod download
- name: Run tests
run: make test