Skip to content

add find

add find #2

Workflow file for this run

name: CI
on:
push:
branches: [ "main" ]
jobs:
build:
strategy:
matrix:
os: [ "ubuntu-latest" ]
runs-on: ${{ matrix.os }}
steps:
- name: Install V
uses: vlang/setup-v@v1.4
with:
check-latest: true
- name: Checkout ${{ github.event.repository.name }}
uses: actions/checkout@v4
- name: Check if code is formatted
run: |
v fmt -diff .
v fmt -verify .
- name: Run Tests
run: v test .