Skip to content

feat: add husky to run csharpier on commit #238

feat: add husky to run csharpier on commit

feat: add husky to run csharpier on commit #238

Workflow file for this run

name: Build
on:
workflow_dispatch:
push:
branches: [ main, release/v** ]
paths-ignore:
- 'README.md'
- 'LICENSE'
- 'img/**'
- 'benchmarks/**'
- 'samples/**'
- '*.sln'
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0 # depth is needed for nbgv
- uses: dotnet/nbgv@master
with:
setAllVars: true
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
include-prerelease: true
- name: Restore dependencies
run: dotnet restore Build.csproj
- name: Build
run: dotnet build Build.csproj --no-restore -c Release
- name: Test
run: dotnet test Build.csproj --no-build --verbosity normal -c Release -f net6.0
- name: Pack
if: ${{ success() && !github.base_ref }}
run: |
dotnet pack src/Mediator/Mediator.csproj --no-build --verbosity normal -c Release -o artifacts/ && \
dotnet pack src/Mediator.SourceGenerator/Mediator.SourceGenerator.csproj --no-build --verbosity normal -c Release -o artifacts/
- name: Push to NuGet
if: ${{ success() && !github.base_ref }}
run: dotnet nuget push artifacts/**.nupkg -s https://api.nuget.org/v3/index.json --api-key ${{secrets.NUGET_API_KEY}}