Skip to content

feat(ci): working basic ci (#3) #4

feat(ci): working basic ci (#3)

feat(ci): working basic ci (#3) #4

Workflow file for this run

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