Skip to content

--> SSI's CS to CPP Rewrite + Extras by jstmax! #20

--> SSI's CS to CPP Rewrite + Extras by jstmax!

--> SSI's CS to CPP Rewrite + Extras by jstmax! #20

Workflow file for this run

name: Build and Test .NET
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: '8.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release
- name: Run tests
run: dotnet test --no-build --verbosity normal