We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8be3745 commit 942038aCopy full SHA for 942038a
1 file changed
.github/workflows/ci.yml
@@ -24,12 +24,10 @@ jobs:
24
steps:
25
# Checks-out the repository under $GITHUB_WORKSPACE.
26
- uses: actions/checkout@v6
27
- - name: Install libreadline on linux
28
- run: |
29
- if [ "$RUNNER_OS" == "Linux" ]; then
30
- sudo apt-get install -y libreadline-dev
31
- fi
32
- shell: bash
+ - name: Install libreadline
+ if: runner.os == 'Linux'
+ run: |
+ sudo apt-get install -y libreadline-dev
33
34
- name: Install Lua (${{ matrix.lua }})
35
run: |
0 commit comments