fix(#498): set_icons failed when called before setup #373
Workflow file for this run
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: CI | |
| on: | |
| pull_request: | |
| branches: | |
| - '*' | |
| push: | |
| branches: | |
| - master | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: leafo/gh-actions-lua@v10 | |
| with: | |
| luaVersion: "5.1" | |
| - uses: leafo/gh-actions-luarocks@v4 | |
| - name: luacheck | |
| run: | | |
| luarocks install luacheck 1.1.1 | |
| make lint | |
| style: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: stylua | |
| uses: JohnnyMorganz/stylua-action@v3 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| version: "0.19" | |
| args: --check lua scripts | |
| colors: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: rhysd/action-setup-vim@v1 | |
| with: | |
| neovim: true | |
| - name: make colors-check | |
| run: make colors-check | |