Put lint before build in CI script

This commit is contained in:
Russ Magee 2022-04-09 20:05:42 -07:00
parent 4f9a064940
commit a4af720280
1 changed files with 5 additions and 5 deletions

View File

@ -41,6 +41,11 @@ go clean -cache
echo "Invoking 'make all' ..."
make all
############
stage "Lint"
############
make lint
############
stage "UnitTests"
############
@ -99,11 +104,6 @@ if [ -f ~/.xs_id.bak ]; then
mv ~/.xs_id.bak ~/.xs_id
fi
############
stage "Lint"
############
make lint
############
stage "Artifacts"
############