Alexander Chuprov
4f046bcfbc
Some checks failed
Tests and linters / Tests with -race (pull_request) Successful in 2m7s
Tests and linters / Tests (pull_request) Successful in 2m18s
DCO action / DCO (pull_request) Successful in 2m26s
Tests and linters / Lint (pull_request) Successful in 2m52s
Tests and linters / Check clang-format (pull_request) Failing after 8m15s
Signed-off-by: Alexander Chuprov <a.chuprov@yadro.com>
94 lines
1.9 KiB
YAML
94 lines
1.9 KiB
YAML
name: Tests and linters
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Lint
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.23'
|
|
cache: true
|
|
|
|
- name: Install linters
|
|
run: make lint-install
|
|
|
|
- name: Run linters
|
|
run: make lint
|
|
|
|
clang-format:
|
|
name: Check clang-format
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: '16'
|
|
|
|
- name: Restore LLVM
|
|
id: cache-primes-restore
|
|
uses: actions/cache/restore@v4
|
|
with:
|
|
path: |
|
|
bin/linters/clang/clang-format
|
|
key: ${{ runner.os }}-clang
|
|
|
|
|
|
- name: Run clang-format
|
|
run: make clang
|
|
|
|
- name: Save LLVM Cache
|
|
id: cache-primes-save
|
|
uses: actions/cache/save@v4
|
|
with:
|
|
path: |
|
|
bin/linters/clang/clang-format
|
|
key: ${{ runner.os }}-clang
|
|
|
|
# - name: Print diff
|
|
# run: git diff HEAD
|
|
|
|
# - name: Check that nothing has changed
|
|
# run: git diff-index --exit-code HEAD
|
|
|
|
tests:
|
|
name: Tests
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
go_versions: [ '1.22', '1.23' ]
|
|
fail-fast: false
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '${{ matrix.go_versions }}'
|
|
cache: true
|
|
|
|
- name: Run tests
|
|
run: make test
|
|
|
|
tests-race:
|
|
name: Tests with -race
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Set up Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.22'
|
|
cache: true
|
|
|
|
- name: Run tests
|
|
run: go test ./... -count=1 -race
|
|
|