Skip to content

fix: return store error from verifyOTP when OTP is missing in store. … #38

fix: return store error from verifyOTP when OTP is missing in store. …

fix: return store error from verifyOTP when OTP is missing in store. … #38

Workflow file for this run

name: Run Tests
# Triggers the workflow on push or pull request events
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go: ["1.24"]
runs-on: ubuntu-latest
name: Go ${{ matrix.go }} Tests
steps:
- uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Run tests
run: make test
- name: Run Coverage
run: go test -v -cover ./...