Skip to content

Commit

Permalink
more workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
drewstinnett committed Jan 19, 2024
1 parent 37cde67 commit 10cde75
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
fetch-depth: 2
- uses: actions/setup-go@v4
with:
go-version: '1.21'
go-version: 'stable'
- name: Run coverage
run: go test -coverprofile=coverage.txt -covermode=atomic ./...
- name: Upload coverage to Codecov
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/security.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Security Scans
on:
push:
pull_request:
jobs:
security:
runs-on: ubuntu-latest
env:
TZ: "America/New_York"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 2
- uses: actions/setup-go@v4
with:
go-version: 'stable'
- id: govulncheck
uses: golang/govulncheck-action@v1

0 comments on commit 10cde75

Please sign in to comment.