1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

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

This commit is contained in:
Delyan Angelov 2020-10-15 11:45:09 +03:00
parent 44a42b7273
commit 60296c8900

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