ci: unified order and style of workflows/actions

Signed-off-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
This commit is contained in:
Paul Meyer 2023-01-18 10:15:58 +01:00
parent 41690288a1
commit 411dfed18f
31 changed files with 235 additions and 183 deletions

View file

@ -46,7 +46,7 @@ jobs:
echo "::group::Install go dependencies"
mods=$(go list -f '{{.Dir}}' -m | xargs)
for mod in $mods; do
(cd "$mod" || exit; go mod tidy)
(cd "$mod" || exit; go mod download)
done
echo "::endgroup::"