Skip to content

Commit

Permalink
add work-dir
Browse files Browse the repository at this point in the history
  • Loading branch information
ohr486 committed Mar 5, 2022
1 parent 1ace9d7 commit bc36b07
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
MIX_ENV: test
- image: circleci/mysql:8.0

working_directory: ~/app
working_directory: ~/repo

steps:
- checkout
Expand All @@ -17,8 +17,16 @@ jobs:

# for debug
- run: pwd
- run:
working_directory: app
command: pwd
- run: which mix
- run: ls -alh
- run:
working_directory: app
command: ls -alh

- run: mix do deps.get, compile
- run:
working_directory: app
command: mix do deps.get, compile

0 comments on commit bc36b07

Please sign in to comment.