Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
  • Loading branch information
almirsarajcic committed Nov 18, 2024
1 parent 9e0feea commit 9a03a13
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
6 changes: 1 addition & 5 deletions .github/github_workflows.ex
Original file line number Diff line number Diff line change
Expand Up @@ -441,15 +441,11 @@ defmodule GithubWorkflows do
name: "Remove mise config files",
run: "rm -f .mise.toml .tool-versions"
],
[
name: "Setup Debug Session",
uses: "csexton/debugger-action@master",
],
[
name: "Test the script",
if: "steps.result_cache.outputs.cache-hit != 'true'",
run: "cd test/scripts && expect -d script.exp",
shell: "/bin/#{shell} -l {0}"
shell: "#{shell} -l {0}"
],
[
name: "Generate an app and start the server",
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,10 @@ jobs:
run: brew install expect
- name: Remove mise config files
run: rm -f .mise.toml .tool-versions
- name: Setup Debug Session
uses: csexton/debugger-action@master
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: cd test/scripts && expect -d script.exp
shell: /bin/fish -l {0}
shell: fish -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
run: make -f test/scripts/Makefile serve
Expand Down
4 changes: 1 addition & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,10 @@ jobs:
run: brew install expect
- name: Remove mise config files
run: rm -f .mise.toml .tool-versions
- name: Setup Debug Session
uses: csexton/debugger-action@master
- name: Test the script
if: steps.result_cache.outputs.cache-hit != 'true'
run: cd test/scripts && expect -d script.exp
shell: /bin/fish -l {0}
shell: fish -l {0}
- name: Generate an app and start the server
if: steps.result_cache.outputs.cache-hit != 'true'
run: make -f test/scripts/Makefile serve
Expand Down

0 comments on commit 9a03a13

Please sign in to comment.