2019-08-27 13:42:46 +02:00
|
|
|
name: main
|
2024-07-05 14:58:54 +02:00
|
|
|
|
2019-08-27 13:42:46 +02:00
|
|
|
on:
|
2023-02-02 13:59:08 +01:00
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- cluster
|
2024-07-05 14:58:54 +02:00
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- '**.go'
|
2023-02-02 13:59:08 +01:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- cluster
|
2024-07-05 14:58:54 +02:00
|
|
|
- master
|
|
|
|
paths:
|
|
|
|
- '**.go'
|
|
|
|
|
2022-04-17 01:56:39 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2023-02-07 03:12:16 +01:00
|
|
|
concurrency:
|
|
|
|
cancel-in-progress: true
|
2024-07-05 14:58:54 +02:00
|
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
2023-02-07 03:12:16 +01:00
|
|
|
|
2019-08-27 13:42:46 +02:00
|
|
|
jobs:
|
2023-02-02 13:59:08 +01:00
|
|
|
lint:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- name: Code checkout
|
2023-09-07 13:07:56 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-02-02 13:59:08 +01:00
|
|
|
|
|
|
|
- name: Setup Go
|
2023-11-21 11:00:47 +01:00
|
|
|
id: go
|
2023-12-08 14:55:31 +01:00
|
|
|
uses: actions/setup-go@v5
|
2023-02-02 13:59:08 +01:00
|
|
|
with:
|
2023-11-20 23:58:41 +01:00
|
|
|
cache: false
|
2024-07-05 14:58:54 +02:00
|
|
|
go-version: stable
|
2023-02-02 13:59:08 +01:00
|
|
|
|
2023-11-20 23:58:41 +01:00
|
|
|
- name: Cache Go artifacts
|
2024-02-13 18:35:44 +01:00
|
|
|
uses: actions/cache@v4
|
2023-11-20 23:58:41 +01:00
|
|
|
with:
|
|
|
|
path: |
|
|
|
|
~/.cache/go-build
|
|
|
|
~/go/bin
|
2024-07-05 14:58:54 +02:00
|
|
|
~/go/pkg/mod
|
2023-11-21 11:00:47 +01:00
|
|
|
key: go-artifacts-${{ runner.os }}-check-all-${{ steps.go.outputs.go-version }}-${{ hashFiles('go.sum', 'Makefile', 'app/**/Makefile') }}
|
2023-11-20 23:58:41 +01:00
|
|
|
restore-keys: go-artifacts-${{ runner.os }}-check-all-
|
|
|
|
|
|
|
|
- name: Run check-all
|
2023-02-02 13:59:08 +01:00
|
|
|
run: |
|
|
|
|
make check-all
|
|
|
|
git diff --exit-code
|
|
|
|
|
2024-07-05 14:58:54 +02:00
|
|
|
test:
|
|
|
|
name: test
|
2023-02-02 13:59:08 +01:00
|
|
|
needs: lint
|
2019-08-27 13:42:46 +02:00
|
|
|
runs-on: ubuntu-latest
|
2023-02-02 13:59:08 +01:00
|
|
|
|
2023-11-20 23:58:41 +01:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-07-05 14:58:54 +02:00
|
|
|
scenario:
|
|
|
|
- 'test-full'
|
|
|
|
- 'test-full-386'
|
|
|
|
- 'test-pure'
|
|
|
|
|
2023-02-02 13:59:08 +01:00
|
|
|
steps:
|
|
|
|
- name: Code checkout
|
2023-09-07 13:07:56 +02:00
|
|
|
uses: actions/checkout@v4
|
2023-01-18 20:42:27 +01:00
|
|
|
|
2019-08-27 13:42:46 +02:00
|
|
|
- name: Setup Go
|
2023-11-21 11:00:47 +01:00
|
|
|
id: go
|
2023-12-08 14:55:31 +01:00
|
|
|
uses: actions/setup-go@v5
|
2019-08-27 13:42:46 +02:00
|
|
|
with:
|
2023-11-20 23:58:41 +01:00
|
|
|
cache: false
|
2024-07-05 14:58:54 +02:00
|
|
|
go-version: stable
|
2023-01-18 20:42:27 +01:00
|
|
|
|
2023-11-20 23:58:41 +01:00
|
|
|
- name: Cache Go artifacts
|
2024-02-13 18:35:44 +01:00
|
|
|
uses: actions/cache@v4
|
2023-02-07 03:12:16 +01:00
|
|
|
with:
|
2023-11-20 23:58:41 +01:00
|
|
|
path: |
|
|
|
|
~/.cache/go-build
|
|
|
|
~/go/bin
|
2024-07-05 14:58:54 +02:00
|
|
|
~/go/pkg/mod
|
2023-11-21 11:00:47 +01:00
|
|
|
key: go-artifacts-${{ runner.os }}-${{ matrix.scenario }}-${{ steps.go.outputs.go-version }}-${{ hashFiles('go.sum', 'Makefile', 'app/**/Makefile') }}
|
2023-11-20 23:58:41 +01:00
|
|
|
restore-keys: go-artifacts-${{ runner.os }}-${{ matrix.scenario }}-
|
2023-02-07 03:12:16 +01:00
|
|
|
|
2024-07-05 14:58:54 +02:00
|
|
|
- name: Run tests
|
2023-11-20 23:58:41 +01:00
|
|
|
run: make ${{ matrix.scenario}}
|
|
|
|
|
|
|
|
- name: Publish coverage
|
2024-02-01 12:57:58 +01:00
|
|
|
uses: codecov/codecov-action@v4
|
2023-11-20 23:58:41 +01:00
|
|
|
with:
|
|
|
|
file: ./coverage.txt
|