Skip to content

remove testing leftovers #4

remove testing leftovers

remove testing leftovers #4

Workflow file for this run

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