vcl README: fix several typos (#188) #37
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: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
super-linter: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout VSL | |
uses: actions/checkout@v4 | |
with: | |
# Full git history is needed to get a proper list of changed files within `super-linter` | |
fetch-depth: 0 | |
- name: Run Super-Linter | |
uses: super-linter/super-linter/slim@v5 | |
env: | |
DEFAULT_BRANCH: main | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
VALIDATE_ALL_CODEBASE: false | |
docs: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout VSL | |
uses: actions/checkout@v4 | |
with: | |
path: vsl | |
- name: Setup V | |
uses: vlang/setup-v@v1.3 | |
with: | |
check-latest: true | |
- name: Setup VSL as V module | |
run: mv vsl ~/.vmodules/ | |
- name: Validate Docs | |
run: v check-md -hide-warnings ~/.vmodules/vsl | |
fmt: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout VSL | |
uses: actions/checkout@v4 | |
with: | |
path: vsl | |
- name: Setup V | |
uses: vlang/setup-v@v1.3 | |
with: | |
check-latest: true | |
- name: Setup VSL as V module | |
run: mv vsl ~/.vmodules/ | |
- name: Check Formatting | |
# NOTE: `cd` into module dir required. Currently, running `v fmt -verify` from outside the module dir | |
# would encounter errors and `v fmt -w` would even break the module. | |
run: cd ~/.vmodules/vsl && v fmt -verify . |