Skip to content

Update ykLogin comments to reflect the NIST documentation for the commands. #184

Update ykLogin comments to reflect the NIST documentation for the commands.

Update ykLogin comments to reflect the NIST documentation for the commands. #184

Workflow file for this run

name: test
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
name: Linux
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Install libpcsc
run: sudo apt-get install -y libpcsclite-dev pcscd pcsc-tools
- name: Test
run: "make test"
build-windows:
strategy:
matrix:
go-version: [1.19.x, 1.20.x]
name: Windows
runs-on: windows-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Test
run: "make build"
env:
CGO_ENABLED: 0