2021-02-24 18:26:34 +00:00
|
|
|
name: Tests
|
|
|
|
|
|
|
|
on:
|
2022-07-20 14:26:17 +00:00
|
|
|
push:
|
|
|
|
branches: [ master ]
|
2021-02-24 18:26:34 +00:00
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
types: [opened, synchronize]
|
|
|
|
paths-ignore:
|
|
|
|
- 'scripts/**'
|
|
|
|
- '**/*.md'
|
|
|
|
workflow_dispatch:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
lint:
|
|
|
|
name: Lint
|
2021-05-12 20:25:06 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-02-24 18:26:34 +00:00
|
|
|
|
|
|
|
steps:
|
2024-02-27 08:56:32 +00:00
|
|
|
- uses: actions/checkout@v4
|
2024-02-19 19:13:17 +00:00
|
|
|
- uses: actions/setup-go@v5
|
2022-08-09 06:27:23 +00:00
|
|
|
with:
|
2024-02-27 08:39:51 +00:00
|
|
|
go-version-file: 'go.mod'
|
2021-05-12 20:25:06 +00:00
|
|
|
- name: golangci-lint
|
2024-02-19 19:13:17 +00:00
|
|
|
uses: golangci/golangci-lint-action@v4
|
2021-02-24 18:26:34 +00:00
|
|
|
with:
|
2021-05-12 20:25:06 +00:00
|
|
|
version: latest
|
2021-02-24 18:26:34 +00:00
|
|
|
|
2022-01-25 09:52:09 +00:00
|
|
|
gomodcheck:
|
|
|
|
name: Check internal dependencies
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2024-02-19 19:13:17 +00:00
|
|
|
- uses: actions/checkout@v4
|
2022-01-25 09:52:09 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
|
|
|
- name: Check dependencies
|
|
|
|
run: |
|
2022-03-15 12:16:23 +00:00
|
|
|
./scripts/check_deps.sh
|
2022-01-25 09:52:09 +00:00
|
|
|
|
2022-07-20 14:26:17 +00:00
|
|
|
codeql:
|
|
|
|
name: CodeQL
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
language: [ 'go' ]
|
|
|
|
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ]
|
|
|
|
# Learn more:
|
|
|
|
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout repository
|
2024-02-19 19:13:17 +00:00
|
|
|
uses: actions/checkout@v4
|
2022-07-20 14:26:17 +00:00
|
|
|
|
|
|
|
# Initializes the CodeQL tools for scanning.
|
|
|
|
- name: Initialize CodeQL
|
|
|
|
uses: github/codeql-action/init@v2
|
|
|
|
with:
|
|
|
|
languages: ${{ matrix.language }}
|
|
|
|
# If you wish to specify custom queries, you can do so here or in a config file.
|
|
|
|
# By default, queries listed here will override any specified in a config file.
|
|
|
|
# Prefix the list here with "+" to use these queries and those in the config file.
|
|
|
|
# queries: ./path/to/local/query, your-org/your-repo/queries@main
|
|
|
|
|
|
|
|
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
|
|
|
|
# If this step fails, then you should remove it and run the build manually (see below)
|
|
|
|
- name: Autobuild
|
|
|
|
uses: github/codeql-action/autobuild@v2
|
|
|
|
|
|
|
|
# ℹ️ Command-line programs to run using the OS shell.
|
|
|
|
# 📚 https://git.io/JvXDl
|
|
|
|
|
|
|
|
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines
|
|
|
|
# and modify them (or add more) to build your code if your project
|
|
|
|
# uses a compiled language
|
|
|
|
|
|
|
|
#- run: |
|
|
|
|
# make bootstrap
|
|
|
|
# make release
|
|
|
|
|
|
|
|
- name: Perform CodeQL Analysis
|
|
|
|
uses: github/codeql-action/analyze@v2
|
|
|
|
|
2021-02-24 18:26:34 +00:00
|
|
|
test_cover:
|
|
|
|
name: Coverage
|
2024-03-04 14:36:28 +00:00
|
|
|
runs-on: ubuntu-22.04
|
2021-02-24 18:26:34 +00:00
|
|
|
|
|
|
|
env:
|
|
|
|
CGO_ENABLED: 0
|
|
|
|
steps:
|
2024-02-19 19:13:17 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-24 18:26:34 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-08-10 09:33:03 +00:00
|
|
|
submodules: 'true'
|
2021-02-24 18:26:34 +00:00
|
|
|
|
|
|
|
- name: Set up Go
|
2024-02-19 19:13:17 +00:00
|
|
|
uses: actions/setup-go@v5
|
2021-02-24 18:26:34 +00:00
|
|
|
with:
|
2023-10-11 08:34:42 +00:00
|
|
|
go-version: '1.21'
|
2022-07-20 16:19:51 +00:00
|
|
|
cache: true
|
2021-02-24 18:26:34 +00:00
|
|
|
|
|
|
|
- name: Write coverage profile
|
|
|
|
run: go test -v ./... -coverprofile=./coverage.txt -covermode=atomic -coverpkg=./pkg...,./cli/...
|
|
|
|
|
|
|
|
- name: Upload coverage results to Codecov
|
2023-10-10 10:53:20 +00:00
|
|
|
uses: codecov/codecov-action@v3
|
2021-02-24 18:26:34 +00:00
|
|
|
with:
|
2022-02-02 08:49:14 +00:00
|
|
|
fail_ci_if_error: true # if something is wrong on uploading codecov results, then this job will fail
|
|
|
|
files: ./coverage.txt
|
2021-02-24 18:26:34 +00:00
|
|
|
verbose: true
|
|
|
|
|
2021-11-25 07:53:33 +00:00
|
|
|
tests:
|
|
|
|
name: Run tests
|
|
|
|
runs-on: ${{ matrix.os }}
|
2021-02-24 18:26:34 +00:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2024-03-04 14:36:28 +00:00
|
|
|
os: [ubuntu-22.04, windows-2022, macos-12, macos-14]
|
2023-10-11 08:34:42 +00:00
|
|
|
go_versions: [ '1.19', '1.20', '1.21' ]
|
2021-11-25 07:53:33 +00:00
|
|
|
exclude:
|
2022-07-15 10:56:08 +00:00
|
|
|
# Only latest Go version for Windows and MacOS.
|
2023-03-31 07:03:19 +00:00
|
|
|
- os: windows-2022
|
|
|
|
go_versions: '1.19'
|
2023-10-11 08:34:42 +00:00
|
|
|
- os: windows-2022
|
|
|
|
go_versions: '1.20'
|
2023-03-31 07:03:19 +00:00
|
|
|
- os: macos-12
|
|
|
|
go_versions: '1.19'
|
2023-10-11 08:34:42 +00:00
|
|
|
- os: macos-12
|
|
|
|
go_versions: '1.20'
|
2024-02-28 09:07:42 +00:00
|
|
|
- os: macos-14
|
|
|
|
go_versions: '1.19'
|
|
|
|
- os: macos-14
|
|
|
|
go_versions: '1.20'
|
2022-02-22 16:37:27 +00:00
|
|
|
# Exclude latest Go version for Ubuntu as Coverage uses it.
|
2024-03-04 14:36:28 +00:00
|
|
|
- os: ubuntu-22.04
|
2023-10-11 08:34:42 +00:00
|
|
|
go_versions: '1.21'
|
2021-02-24 18:26:34 +00:00
|
|
|
fail-fast: false
|
|
|
|
steps:
|
2024-02-19 19:13:17 +00:00
|
|
|
- uses: actions/checkout@v4
|
2021-02-24 18:26:34 +00:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2023-08-10 09:33:03 +00:00
|
|
|
submodules: 'true'
|
2021-02-24 18:26:34 +00:00
|
|
|
|
|
|
|
- name: Set up Go
|
2024-02-19 19:13:17 +00:00
|
|
|
uses: actions/setup-go@v5
|
2021-02-24 18:26:34 +00:00
|
|
|
with:
|
|
|
|
go-version: '${{ matrix.go_versions }}'
|
|
|
|
|
|
|
|
- name: Run tests
|
|
|
|
run: go test -v -race ./...
|