ci: Disable commitlint for dependabot (#43) #114
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
Build: | |
runs-on: windows-latest | |
env: | |
NUGET_PACKAGES: ${{ github.workspace }}\.nuget\packages | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Restore dependencies | |
run: dotnet restore --locked-mode | |
- name: Add appsettings.Local.json | |
run: cp src/Cellm/appsettings.Local.Ollama.json src/Cellm/appsettings.Local.json | |
- name: Build | |
run: dotnet build --no-restore | |
- name: Test | |
run: dotnet test --filter ClassName=Cellm.Tests.UnitTests --no-build --verbosity normal | |
Lint: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup .NET | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: 6.0.x | |
- name: Lint solution | |
run: dotnet format --no-restore --verify-no-changes | |
commitlint: | |
runs-on: ubuntu-latest | |
name: Conventional Commits | |
steps: | |
- name: Run commitlint | |
if: (github.actor!= 'dependabot[bot]') && (contains(github.head_ref, 'dependabot/') == false) | |
uses: opensource-nepal/commitlint@v1 |