Skip to content

Update .editorconfig and apply code style conventions #934

Update .editorconfig and apply code style conventions

Update .editorconfig and apply code style conventions #934

Workflow file for this run

name: CI
on:
pull_request:
workflow_dispatch:
jobs:
build-and-test:
runs-on: windows-latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup dotnet SDK
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: dotnet restore
run: dotnet restore
- name: dotnet build
run: dotnet build Bravo.sln --configuration Release --no-restore
- name: dotnet test
run: dotnet test Bravo.sln --configuration Release --no-build --verbosity normal