ci: run `v -silent test-fmt` as a new task in the code-formatting job

pull/6621/head
Delyan Angelov 2020-10-15 11:45:09 +03:00
parent 44a42b7273
commit 60296c8900
1 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,7 @@ jobs:
run: |
./v vet vlib/sqlite
./v vet vlib/v
- name: v fmt
- name: v fmt -verify
run: |
./v fmt -verify vlib/v/scanner/scanner.v
./v fmt -verify vlib/v/parser/parser.v
@ -27,6 +27,8 @@ jobs:
./v fmt -verify vlib/v/gen/x64/gen.v
./v fmt -verify vlib/v/table/table.v
./v fmt -verify vlib/v/fmt/fmt.v
- name: v test-fmt
run: ./v -silent test-fmt
# v-fmt:
# runs-on: ubuntu-18.04