Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Delete .github/dependabot.yml #8

Delete .github/dependabot.yml

Delete .github/dependabot.yml #8

Workflow file for this run

name: Development
on:
push:
branches: [ "develop" ]
pull_request:
branches: [ "develop" ]
jobs:
build:
name: Build
runs-on: windows-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 7.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Debug --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal