Neovim plugin improving access to clipboard history (mirror)
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

ci(added ci for formatter and linter)

ptdewey 2eb48aac 819e20e4

+32
+32
.github/workflows/ci.yaml
··· 1 + name: YankBank CI 2 + 3 + on: 4 + push: 5 + pull_request: 6 + 7 + jobs: 8 + stylua: 9 + name: Stylua 10 + runs-on: ubuntu-22.04 11 + steps: 12 + - uses: actions/checkout@v3 13 + - uses: JohnnyMorganz/stylua-action@v3 14 + with: 15 + token: ${{ secrets.GITHUB_TOKEN }} 16 + version: latest 17 + args: --color always --check . 18 + 19 + luacheck: 20 + name: Luacheck 21 + runs-on: ubuntu-22.04 22 + steps: 23 + - uses: actions/checkout@v3 24 + 25 + - name: Prepare 26 + run: | 27 + sudo apt-get update 28 + sudo apt-get install -y luarocks 29 + sudo luarocks install luacheck 30 + 31 + - name: Lint 32 + run: sudo make lint