Skip to content

Commit

Permalink
Run Go test step outside container
Browse files Browse the repository at this point in the history
Signed-off-by: Chaitanya Munukutla <[email protected]>
  • Loading branch information
c16a committed Apr 6, 2024
1 parent 039f905 commit f409984
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,15 @@ jobs:
test:
name: Test
runs-on: ubuntu-latest
container: golang:1.22.2
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: '1.22.2'

- name: Test
run: go test -v ./...

Expand Down

0 comments on commit f409984

Please sign in to comment.