Skip to content

Automatic version bump to 1.3.2 #112

Automatic version bump to 1.3.2

Automatic version bump to 1.3.2 #112

Workflow file for this run

name: Code quality checks
on:
workflow_call:
push:
branches: [ main, 0.x ]
jobs:
check-code:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Set up .NET 6.0
id: dotnet-setup
uses: actions/setup-dotnet@v4
with:
dotnet-version: 6.0.x
- name: use .NET 6.0
run: |
dotnet new globaljson --sdk-version '${{ steps.dotnet-setup.outputs.dotnet-version }}'
- name: Install dotnet-format
run: |
dotnet tool install -g dotnet-format --version "6.*" --add-source https://pkgs.dev.azure.com/dnceng/public/_packaging/dotnet6/nuget/v3/index.json
- name: Run pre-commit checks
uses: pre-commit/action@v3.0.0