Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
owenrumney committed Apr 27, 2021
1 parent 7466175 commit 412767a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: go-sarif test
on:
pull_request:
jobs:
test:
name: testing go-sarif
runs-on: ubuntu-latest

steps:
- name: Clone repo
uses: actions/checkout@main

- name: Set up Go
uses: actions/setup-go@v2
with:
stable: 'true'
- run: go version

- name: test
run: make test

0 comments on commit 412767a

Please sign in to comment.