Skip to content

Commit

Permalink
Merge pull request #14 from DataDog/james.pond/fix-github-workflow
Browse files Browse the repository at this point in the history
Update GitHub workflows
  • Loading branch information
jamesponddotco authored May 10, 2024
2 parents 80d8094 + e3ef1f6 commit e02cdcc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,17 @@ on:
jobs:
test:
runs-on: 'ubuntu-latest'
strategy:
matrix:
go: ['1.21.x', '1.22.x']
name: 'Tests'
steps:
- uses: 'actions/checkout@v4'

- name: 'Setup Go environment'
uses: 'actions/setup-go@v4'
with:
go-version: '>=1.21.5'
go-version: '${{ matrix.go }}'

- name: 'Run mock tests'
run: 'make test'
2 changes: 1 addition & 1 deletion .github/workflows/linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: 'Setup Go environment'
uses: 'actions/setup-go@v4'
with:
go-version: '>=1.21.10'
go-version: '1.21.x'

- name: 'Run govulncheck'
run: 'make vulnerabilities'
Expand Down

0 comments on commit e02cdcc

Please sign in to comment.