Skip to content

feat(ci): initial CI files #1

feat(ci): initial CI files

feat(ci): initial CI files #1

Workflow file for this run

name: Build App
on:
push:
branches:
- "main"
paths-ignore:
- '**/*.md'
pull_request:
branches:
- main
paths-ignore:
- '**/*.md'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 4.6.2
uses: actions/setup-dotnet@v3
with:
dotnet-version: '4.6.2'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore