Skip to content

Commit

Permalink
session-5: Fix github actions workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Szymon Mikitiuk committed Nov 11, 2023
1 parent 6a1d640 commit 7df8ecc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,13 @@ jobs:
go-version: '1.21'

- name: Build quiz
run: go build -v ./quiz/main.go
run: cd $GITHUB_WORKSPACE/quiz && go build -v .

- name: Test quiz
run: cd $GITHUB_WORKSPACE && cd quiz && go test -run .
run: go test -run .

- name: Build urlshort
run: go build -v ./urlshort/main.go
run: cd $GITHUB_WORKSPACE/urlshort && go build -v .

- name: Test urlshort
run: cd $GITHUB_WORKSPACE && cd urlshort && go test -run .
run: go test -run .

0 comments on commit 7df8ecc

Please sign in to comment.