Skip to content

refactor webhooks

refactor webhooks #40

Workflow file for this run

name: Build & Test
on:
workflow_dispatch:
pull_request:
branches: [ master ]
paths:
- source/**
- tests/**
- .github/workflows/ci.yml
push:
branches: [ master ]
paths:
- source/**
- tests/**
- .github/workflows/ci.yml
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: ['8.x']
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Setup .NET Core SDK ${{ matrix.dotnet-version }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Build
run: dotnet build ./source/Cute --warnaserror --configuration Release