-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adiciona workflow para checar a formatação do código nos PRs
- Loading branch information
1 parent
d771cf1
commit a036293
Showing
1 changed file
with
31 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: GoFmt Check | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- '**' # Escuta PRs para qualquer branch de destino | ||
|
||
jobs: | ||
gofmt: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
# Configura o repositório | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
# Configura o ambiente Go | ||
- name: Setup Go | ||
uses: actions/setup-go@v4 | ||
with: | ||
go-version: '1.20' # Ajuste a versão do Go conforme necessário | ||
|
||
# Executa o gofmt para verificar formatação | ||
- name: Run gofmt | ||
run: | | ||
gofmt -l . | ||
if [ "$(gofmt -l .)" != "" ]; then | ||
echo "⚠️ The following files need to be formatted:" | ||
gofmt -l . | ||
exit 1 | ||
fi |