Skip to content

🏗️ Bring everything together in a single module:… #18

🏗️ Bring everything together in a single module:…

🏗️ Bring everything together in a single module:… #18

Workflow file for this run

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 .