🏗️ Bring everything together in a single module:… #18
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 | |
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
ci: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest] | |
name: VUT on ${{ matrix.operating-system }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup Vlang | |
run: | | |
git clone https://github.com/vlang/v $HOME/v | |
cd $HOME/v | |
make | |
sudo ./v symlink | |
- name: Check fmt | |
run: v fmt -verify . | |
- name: Validate specs | |
run: v test . |