Skip to content

feat: add USB fixture helpers for backup-mode testing #7

feat: add USB fixture helpers for backup-mode testing

feat: add USB fixture helpers for backup-mode testing #7

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
go-version: ["1.22.x", "stable"]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Run vet
run: go vet ./...
- name: Run tests
run: go test ./...