24 lines
660 B
YAML
24 lines
660 B
YAML
name: 'DOTNET QC'
|
|
description: '品質檢查 .NET 套件'
|
|
author: 'Jeffery'
|
|
runs:
|
|
using: 'composite'
|
|
steps:
|
|
- name: 取得專案
|
|
uses: actions/checkout@v6
|
|
- name: 快取 NUGET 套件
|
|
uses: https://gitea.jsc.idv.tw/actions/cache-nuget@v0.0.3
|
|
- name: 復原專案
|
|
run: dotnet restore
|
|
if: ${{ hashFiles('nuget.config') == '' }}
|
|
shell: bash
|
|
- name: 復原專案
|
|
run: dotnet restore --configfile nuget.config
|
|
if: ${{ hashFiles('nuget.config') != '' }}
|
|
shell: bash
|
|
- name: 建置專案
|
|
run: dotnet build --no-restore
|
|
shell: bash
|
|
- name: 測試專案
|
|
run: dotnet test --no-restore --no-build
|
|
shell: bash |