8000 fix: make fzf_install filter out installed fonts · getnf/getnf@09ed749 · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

fix: make fzf_install filter out installed fonts #54

fix: make fzf_install filter out installed fonts

fix: make fzf_install filter out installed fonts #54

Workflow file for this run

name: Linting and style checking
on: [push, pull_request]
jobs:
shellcheck:
name: Shellcheck
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y shellcheck
- name: Lint
run: shellcheck getnf
shfmt:
name: Shfmt
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y shfmt
- name: Style Check
run: shfmt -d getnf
0