-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from fido-device-onboard/KiranSukhavasi-patch-1
Create workflow
- Loading branch information
Showing
2 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- | ||
name: Bug report | ||
about: Report protocol errors | ||
title: "" | ||
labels: "" | ||
assignees: "" | ||
--- | ||
|
||
### Nature of the bug | ||
|
||
Spec non-conformance, panic, etc. | ||
|
||
### Steps taken to find bug | ||
|
||
What did you do to trigger the bug? | ||
|
||
### Steps to ensure bug is gone | ||
|
||
How can a fix be validated? | ||
|
||
### Optional: Reproduction | ||
|
||
Do you have an exact list of commands for others to reproduce the problem? | ||
|
||
### Client Debug Logs | ||
|
||
```console | ||
Attach large files, but place the most relevant details here | ||
``` | ||
|
||
### Server Debug Logs | ||
|
||
```console | ||
Attach large files, but place the most relevant details here | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
name: Test | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
go: | ||
name: Test Go packages | ||
runs-on: ubuntu-latest | ||
container: | ||
image: golang:alpine | ||
steps: | ||
- name: Check out repository code | ||
uses: actions/checkout@v4 |