Files
dotnet-qc/action.yml
T
2026-05-05 17:24:45 +08:00

14 lines
356 B
YAML

name: 'DOTNET QC'
description: '品質檢查 NUGET 套件'
author: 'Jeffery'
runs:
using: 'composite'
steps:
- uses: actions/checkout@v6
- uses: https://gitea.jsc.idv.tw/actions/cache-nuget@v0.0.2
- run: dotnet restore
shell: bash
- run: dotnet build --no-restore
shell: bash
- run: dotnet test --no-restore --no-build
shell: bash