Skip to content

Commit

Permalink
fix github action
Browse files Browse the repository at this point in the history
It was trying to run tests in removed folder.
  • Loading branch information
ianic committed Dec 26, 2021
1 parent 56825b2 commit 5b160c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Run unit tests
working-directory: mantil
run: go test -v ./aws/... ./cli/... ./domain/... ./kit/... ./node/...
run: go test -v ./cli/... ./domain/... ./kit/... ./node/...

- name: Configure AWS Credentials for unit-test account
uses: aws-actions/configure-aws-credentials@v1
Expand All @@ -49,4 +49,4 @@ jobs:

- name: Run end to end tests
working-directory: mantil/test
run: go test -v --timeout 1h
run: go test -v --timeout 30m

0 comments on commit 5b160c2

Please sign in to comment.