Skip to content
This repository has been archived by the owner on Mar 23, 2024. It is now read-only.

#13 テストとCIを追加 #1

#13 テストとCIを追加

#13 テストとCIを追加 #1

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- uses: microsoft/[email protected]
- run: dotnet restore
- run: dotnet format whitespace --verify-no-changes
- run: dotnet build -c Release
test:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- uses: microsoft/[email protected]
- run: dotnet restore
- run: dotnet test