2022-08-30 02:30:36 +00:00
|
|
|
name: Go Build/Test
|
|
|
|
|
|
|
|
on:
|
2022-09-09 18:49:51 +00:00
|
|
|
workflow_call:
|
2022-08-30 02:30:36 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-09-03 09:30:45 +00:00
|
|
|
Go:
|
2022-08-30 02:30:36 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up Go
|
|
|
|
uses: actions/setup-go@v2
|
|
|
|
with:
|
2022-09-05 08:26:21 +00:00
|
|
|
go-version: 1.19
|
2022-08-30 02:30:36 +00:00
|
|
|
|
|
|
|
- name: Install Task
|
|
|
|
uses: arduino/setup-task@v1
|
|
|
|
|
2022-09-03 09:24:28 +00:00
|
|
|
- name: golangci-lint
|
|
|
|
uses: golangci/golangci-lint-action@v3
|
|
|
|
with:
|
|
|
|
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
|
|
|
|
version: latest
|
|
|
|
|
|
|
|
# Optional: working directory, useful for monorepos
|
|
|
|
working-directory: backend
|
2022-09-05 08:26:21 +00:00
|
|
|
args: --timeout=6m
|
2022-09-03 09:24:28 +00:00
|
|
|
|
2022-08-30 02:30:36 +00:00
|
|
|
- name: Build API
|
|
|
|
run: task api:build
|
|
|
|
|
|
|
|
- name: Test
|
|
|
|
run: task api:coverage
|