Skip to content

Commit 76a17d7

Browse files
authored
Merge branch 'main' into mafredri/fix-coderd-metadata-test
2 parents 656490b + 4bc4e63 commit 76a17d7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/ci.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -565,14 +565,16 @@ jobs:
565565

566566
required:
567567
runs-on: ubuntu-latest
568-
needs: [gen, test-go, test-go-pg, test-go-race, test-js]
568+
needs: [fmt, lint, gen, test-go, test-go-pg, test-go-race, test-js]
569569
# Allow this job to run even if the needed jobs fail, are skipped or
570570
# cancelled.
571571
if: always()
572572
steps:
573573
- name: Ensure required checks
574574
run: |
575575
echo "Checking required checks"
576+
echo "- fmt: ${{ needs.fmt.result }}"
577+
echo "- lint: ${{ needs.lint.result }}"
576578
echo "- gen: ${{ needs.gen.result }}"
577579
echo "- test-go: ${{ needs.test-go.result }}"
578580
echo "- test-go-pg: ${{ needs.test-go-pg.result }}"

cli/ssh.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ func (r *RootCmd) ssh() *clibase.Cmd {
110110
}
111111
go func() {
112112
wg.Wait()
113-
logFile.Close()
113+
_ = logFile.Close()
114114
}()
115115

116116
logger = slog.Make(sloghuman.Sink(logFile))

0 commit comments

Comments
 (0)