Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Prrromanssss committed Apr 21, 2024
1 parent 28c8b4f commit 8dde176
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,9 @@ jobs:
run: cd backend && go test ./...
- name: Check test results
run: |
if grep -q "ok" <<< "$(go test ./...)"; then
if grep -q "ok" <<< "$(cd backend && go test ./...)"; then
echo "All tests passed"
exit 0
else
echo "Some tests failed"
exit 1
Expand Down

0 comments on commit 8dde176

Please sign in to comment.