更新版本 更新Nuget信息 #3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI-Check | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ "**" ] | |
pull_request: | |
types: | |
- opened | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Test | |
run: dotnet test src/PluginLoader/BlessingStudio.PluginLoader.csproj | |
test_build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Test | |
run: dotnet build src/PluginLoader/BlessingStudio.PluginLoader.csproj |