Skip to content

Commit

Permalink
add github tests
Browse files Browse the repository at this point in the history
  • Loading branch information
salrashid123 committed May 6, 2024
1 parent a7c1848 commit 5630368
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Go Test for TPM

on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'

- name: Run tests
run: go test -v ./...

0 comments on commit 5630368

Please sign in to comment.