Skip to content

测试一些边界情况 #174

测试一些边界情况

测试一些边界情况 #174

Workflow file for this run

name: .NET Build

Check failure on line 1 in .github/workflows/dotnet-build.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dotnet-build.yml

Invalid workflow file

(Line: 24, Col: 7): 'run' is already defined
on: [push]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v1
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
8.0.x
9.0.x
- name: Build
run: dotnet build -c release
- name: Test
run: dotnet test -c debug
run: dotnet test -c release
- name: Pack
run: dotnet pack ./src/DotNetCampus.CommandLine -c release --no-build