Skip to content

Commit

Permalink
Add step to get dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
llgcode committed Dec 12, 2023
1 parent 86bacf5 commit 62c738c
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
with:
go-version: '1.20'

- name: Build
run: go build -v ./...
- name: Get Dependencies
run: go mod tidy

- name: Build
run: go build -v . ./draw2dbase ./draw2dimg ./draw2dkit ./draw2dpdf ./draw2dsvg

- name: Test
run: go test -v ./...
run: go test -v . ./draw2dbase ./draw2dimg ./draw2dkit ./draw2dpdf ./draw2dsvg

0 comments on commit 62c738c

Please sign in to comment.