Skip to content

Merge pull request #13 from alligator609/users/alligator609/infra-ini… #8

Merge pull request #13 from alligator609/users/alligator609/infra-ini…

Merge pull request #13 from alligator609/users/alligator609/infra-ini… #8

Workflow file for this run

name: Github
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: windows-2022
steps:
- name: Check out
uses: actions/checkout@v2
- name: Setup .Net
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.100
include-prerelease: true
- name: Restore
run: dotnet restore
- name: Build
run: dotnet build --no-restore
- name: Test
run: dotnet test --no-build --verbosity normal