Skip to content

升级到 v1.7.1

升级到 v1.7.1 #49

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
paths-ignore:
- 'README.md'
- '.github/**'
- 'docs/**'
pull_request:
branches: [ main ]
paths-ignore:
- 'README.md'
- '.github/**'
- 'docs/**'
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET
uses: actions/setup-dotnet@v1
with:
dotnet-version: |
3.1.x
5.0.x
6.0.x
7.0.x
8.0.x
9.0.x
- name: Restore dependencies
run: dotnet restore .\src\JiuLing.CommonLibs.sln
- name: Build
run: dotnet build .\src\JiuLing.CommonLibs.sln --no-restore
- name: Test
run: dotnet test .\src\JiuLing.CommonLibs.sln