Skip to content

Export defaults to xml format #172

Export defaults to xml format

Export defaults to xml format #172

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.21'
- name: Run tests
run: go test -v ./...
- name: Run tests with race detection
run: go test -race -v ./...
- name: Run integration tests
run: go test -v ./test/integration/...