Skip to content

#27 mscd Admin interface #8

#27 mscd Admin interface

#27 mscd Admin interface #8

Workflow file for this run

name: Run tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: ['1.24.4']
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
cache-dependency-path: |
go.sum
test/testdata/go.sum
- name: Download dependencies
run: go mod download
- name: Run tests
run: go test -v ./...