Skip to content

Commit

Permalink
fix: fixxing working directory
Browse files Browse the repository at this point in the history
  • Loading branch information
bbatist-ban committed Feb 26, 2024
1 parent 4d40dc1 commit f8a3245
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/template-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,19 +83,24 @@ jobs:
uses: actions/cache@v3
with:
path: Elixir/Konex/deps
key: ${{ runner.os }}-mix-${{ hashFiles('**/Elixir/Konex/mix.lock') }}
key: ${{ runner.os }}-mix-${{ hashFiles('**/mix.lock') }}
restore-keys: ${{ runner.os }}-mix-
working-directory: Elixir/Konex/

- name: Show files
run: |
ls
echo "------------------------------"
ls Elixir/Konex/
echo "------------------------------"
# - name: Install dependencies
# run: mix Elixir/Konex/deps.get
# run: mix deps.get
# working-directory: Elixir/Konex/

# - name: Run tests
# run: mix test Elixir/Konex/test
# run: mix test
# working-directory: Elixir/Konex/

# - name: Publish to HEX
# if: github.event_name == 'release'
Expand Down

0 comments on commit f8a3245

Please sign in to comment.