We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd1a41e commit b032058Copy full SHA for b032058
.github/workflows/test.yml
@@ -73,9 +73,15 @@ jobs:
73
sudo apt remove bpfcc-tools
74
zsh --version
75
76
- - name: Run tests against all shells on alpine
+ - name: Pre-clean zsh config with sudo
77
+ run: |
78
+ sudo rm -rf /etc/zsh /etc/zshenv /etc/zprofile /etc/zshrc /etc/zlogin || true
79
+ sudo rm -rf ~/.zshenv ~/.zprofile ~/.zshrc ~/.zlogin || true
80
+ shell: bash
81
+
82
+ - name: Run zsh tests without sudo
83
run: |
- script -q -c "sudo make test_zsh"
84
+ make test_zsh
85
shell: bash
86
87
test-alpine:
0 commit comments