Skip to content

Merge pull request #7 from ovh/split #3

Merge pull request #7 from ovh/split

Merge pull request #7 from ovh/split #3

Workflow file for this run

name: Go
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.23.x'
- name: Build
run: go build -v ./cmd/yubico-piv-checker
- name: Test
run: go test -v ./...