mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
CI: build/test separately
This commit is contained in:
parent
9e4f5d8e40
commit
8e02bb294a
1 changed files with 13 additions and 1 deletions
14
.github/workflows/dotnetcore.yml
vendored
14
.github/workflows/dotnetcore.yml
vendored
|
|
@ -13,5 +13,17 @@ jobs:
|
|||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: 5.0.x
|
||||
- name: Build and test with dotnet
|
||||
- name: Build with dotnet
|
||||
run: dotnet build --configuration Release
|
||||
test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
submodules: recursive
|
||||
- name: Setup .NET Core
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: 5.0.x
|
||||
- name: Run automated tests
|
||||
run: dotnet test --configuration Release
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue