aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/go.yaml
blob: c4e2b775febb4cbab005660582aa218cfc2a6ad6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: Go

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

permissions:
  contents: read

defaults:
  run:
    working-directory: ./backend

jobs:
  build:
    runs-on: ubuntu-latest

    services:
      dind:
        image: docker:dind-rootless
        ports:
          - 2375:2375

    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-go@v5
        with:
          go-version: stable
      - uses: bufbuild/buf-action@v1
        with:
          setup_only: true
      - name: Install mockgen
        run: go install go.uber.org/mock/mockgen@latest
      - name: Generate
        run: go generate -v ./...
      - name: Build
        run: go build -v ./...
      - name: Test
        run: go test -v ./...

  lint:
    runs-on: ubuntu-latest

    steps:
      - uses: actions/checkout@v4
      - uses: actions/setup-go@v5
        with:
          go-version: stable
      - uses: bufbuild/buf-action@v1
        with:
          setup_only: true
      - name: Install mockgen
        run: go install go.uber.org/mock/mockgen@latest
      - name: Generate
        run: go generate -v ./...
      - name: golangci-lint
        uses: golangci/golangci-lint-action@v6
        with:
          version: v1.59