Add instance statistics table #820
Workflow file for this run
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
name: Build Backend | |
on: | |
pull_request: | |
paths: | |
- 'backend/cmd/**' | |
- 'backend/pkg/**' | |
- 'backend/tools/**' | |
- 'backend/test/**' | |
- 'backend/go.mod' | |
- 'backend/go.sum' | |
- 'updaters/**' | |
- '.github/**' | |
- Makefile | |
jobs: | |
build: | |
name: Lint & Build | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Set up Go 1.19 | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.19.x | |
id: go | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Build, Lint & Check | |
run: | | |
make all ci | |
working-directory: backend |