frostfs-sdk-csharp/.forgejo/workflows/lint-build.yml
Vitaliy Potyarkin c406df1a78
All checks were successful
lint-build / dotnet8.0 (push) Successful in 1m2s
[#13] Execute .NET code analyzers in CI
Signed-off-by: Vitaliy Potyarkin <v.potyarkin@yadro.com>
2024-11-18 07:07:57 +00:00

22 lines
546 B
YAML

name: lint-build
on:
push:
pull_request:
jobs:
lint-build:
name: dotnet${{ matrix.dotnet }}
runs-on: docker
container: git.frostfs.info/truecloudlab/env:dotnet-${{ matrix.dotnet }}
strategy:
matrix:
dotnet:
- '8.0'
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
# Dotnet runs code analyzers on build (if configured):
# https://learn.microsoft.com/en-us/dotnet/fundamentals/code-analysis/overview?tabs=net-8#enable-on-build
- run: dotnet build