Skip to content

📝 Update package information #14

📝 Update package information

📝 Update package information #14

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: Check fmt
run: v test .