Files
cbconvert/.github/workflows/test.yml
T
Milan Nikolic 97554ae16c Update actions
2026-06-26 14:07:14 +02:00

21 lines
431 B
YAML

on: [push, pull_request]
name: Test
jobs:
test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Test
run: go test -v ./...
env:
CGO_ENABLED: 1