Skip to content
This repository has been archived by the owner on Feb 3, 2024. It is now read-only.

Update termtable_test.v #602

Update termtable_test.v

Update termtable_test.v #602

Workflow file for this run

name: CI
on:
pull_request:
push:
branches:
- master
jobs:
code-style:
runs-on: ubuntu-latest
steps:
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v
- name: Build V
run: make
- name: Checkout termtable
uses: actions/checkout@v2
with:
path: termtable
- name: vet
run: ./v vet -W termtable/
- name: fmt
run: |
./v fmt -diff termtable/
./v fmt -verify termtable/
test:
runs-on: ubuntu-latest
steps:
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v
- name: Build V
run: make
- name: Checkout termtable
uses: actions/checkout@v2
with:
path: termtable
- name: Run tests
run: ./v test termtable/
- name: Run tests with warnings as errors
run: ./v -W test termtable/
build:
runs-on: ubuntu-latest
steps:
- name: Checkout V
uses: actions/checkout@v2
with:
repository: vlang/v
- name: Build V
run: make
- name: Checkout termtable
uses: actions/checkout@v2
with:
path: termtable
- name: Development build
run: ./v -shared termtable/
- name: Production build
run: ./v -prod -shared termtable/