Skip to content

docs: ApplyEnumMemberConverters 주석의 유령 CHECK 전제 정정 #13

docs: ApplyEnumMemberConverters 주석의 유령 CHECK 전제 정정

docs: ApplyEnumMemberConverters 주석의 유령 CHECK 전제 정정 #13

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Cache NuGet packages
uses: actions/cache@v4
with:
path: ~/.nuget/packages
key: ${{ runner.os }}-nuget-${{ hashFiles('**/*.csproj', '**/Directory.Build.props') }}
restore-keys: |
${{ runner.os }}-nuget-
- name: Restore
run: dotnet restore IyuFramework.slnx
- name: Build
run: dotnet build IyuFramework.slnx -c Release --no-restore
- name: Test
run: dotnet test IyuFramework.slnx -c Release --no-build --verbosity normal