Skip to content

Commit

Permalink
Avoid no tty errors in actions (#226)
Browse files Browse the repository at this point in the history
  • Loading branch information
kachick committed Jul 31, 2023
1 parent 95673a4 commit 90976ec
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/ci-home.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,11 @@ jobs:
which fish
which zsh
which bash # Be non nix shell
# Do not use interactive mode here.
# Solutions as https://github.com/actions/runner/issues/241#issuecomment-924327172 will not fit with several problems
- name: Run customized dependencies
run: |
fish --interactive --command 'starship --version'
zsh --interactive -c 'bench_shells'
fish --command 'starship --version'
zsh -c 'which dprint'
- name: Run homemade commands
run: zsh -c 'la'

0 comments on commit 90976ec

Please sign in to comment.