diff --git a/.forgejo/workflows/dco.yml b/.forgejo/workflows/dco.yml new file mode 100644 index 0000000..c8aa5e3 --- /dev/null +++ b/.forgejo/workflows/dco.yml @@ -0,0 +1,21 @@ +name: DCO +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 }}' diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5659307 --- /dev/null +++ b/.gitignore @@ -0,0 +1,33 @@ +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories +vendor/ + +# IDE +.idea +.vscode + +# coverage +coverage.txt +coverage.html + +# antlr tool jar +antlr-*.jar + +# tempfiles +.cache + +# binary +bin/ +release/ diff --git a/README.md b/README.md index 8da6ddf..c0254d1 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,4 @@ # frostfs-sdk-csharp -C# implementation of FrostFS SDK \ No newline at end of file +C# implementation of FrostFS SDK. +