Skip to content

Commit

Permalink
fix: use correct string notation
Browse files Browse the repository at this point in the history
  • Loading branch information
mehalter committed Sep 18, 2024
1 parent 4709cfa commit 4cc6216
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ jobs:
secrets: inherit
with:
plugin_name: "" # disable Neovim plugin checks
is_production: ${{ github.event_name == "push" }}
is_production: ${{ github.event_name == 'push' }}
6 changes: 3 additions & 3 deletions .github/workflows/plugin_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
style:
name: Stylua Formatting
runs-on: ubuntu-latest
if: ${{ inputs.plugin_name != "" }}
if: ${{ inputs.plugin_name != '' }}
steps:
- uses: actions/checkout@v4
- uses: JohnnyMorganz/stylua-action@v4
Expand All @@ -61,7 +61,7 @@ jobs:
lint:
name: Selene Linting
runs-on: ubuntu-latest
if: ${{ inputs.plugin_name != "" }}
if: ${{ inputs.plugin_name != '' }}
steps:
- uses: actions/checkout@v4
- uses: NTBBloodbath/selene-action@v1.0.0
Expand All @@ -74,7 +74,7 @@ jobs:
needs:
- style
- lint
if: ${{ inputs.plugin_name != "" && inputs.docs }}
if: ${{ inputs.plugin_name != '' && inputs.docs }}
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 4cc6216

Please # to comment.