doc: fix instructions for OSCYank integration #71
Workflow file for this run
This file contains 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: lint | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
lint: | |
runs-on: [ubuntu-latest] | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v2 | |
- name: Setup luacheck | |
run: | | |
sudo apt update && | |
sudo apt install -y lua5.1 luarocks && | |
sudo luarocks install luacheck | |
- name: Run luacheck | |
run: | |