Evgenii Stratonikov
d60ce83e42
All checks were successful
DCO action / DCO (pull_request) Successful in 5m9s
Tests and linters / Tests (1.20) (pull_request) Successful in 7m17s
Tests and linters / Tests with -race (pull_request) Successful in 8m39s
Tests and linters / Tests (1.19) (pull_request) Successful in 10m2s
Tests and linters / Lint (pull_request) Successful in 12m37s
Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
21 lines
460 B
YAML
21 lines
460 B
YAML
name: DCO action
|
|
on: [pull_request]
|
|
|
|
jobs:
|
|
dco:
|
|
name: DCO
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v3
|
|
with:
|
|
go-version: '1.21'
|
|
|
|
- name: Run commit format checker
|
|
uses: https://git.frostfs.info/TrueCloudLab/dco-go@v3
|
|
with:
|
|
from: 'origin/${{ github.event.pull_request.base.ref }}'
|