minor edits #11
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: CI | |
### The documentation *SHOULD* stay valid, and the developers should receive | |
### early warning, if they break it. | |
on: | |
push: | |
pull_request: | |
jobs: | |
check-markdown: | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Install V | |
id: install-v | |
uses: vlang/[email protected] | |
with: | |
check-latest: true | |
- name: Check out edu-platform | |
uses: actions/checkout@v4 | |
with: | |
path: edu-platform | |
- name: Install V project dependencies | |
run: cd edu-platform; v install | |
- name: Check project compilation | |
run: | | |
cd edu-platform | |
v . | |
- name: Check project code is formatted | |
run: | | |
cd edu-platform | |
v fmt -verify . | |
- name: Check markdown line length & code examples | |
run: | | |
cd edu-platform | |
v check-md . |