소스 검색

Create dotnetcore.yml

tags/v2.2.0
SmallChi(Koike) 5 년 전
committed by GitHub
부모
커밋
aafb82b316
No known key found for this signature in database GPG 키 ID: 4AEE18F83AFDEB23
1개의 변경된 파일23개의 추가작업 그리고 0개의 파일을 삭제
  1. +23
    -0
      .github/workflows/dotnetcore.yml

+ 23
- 0
.github/workflows/dotnetcore.yml 파일 보기

@@ -0,0 +1,23 @@
name: .NET Core

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- name: Setup .NET Core
uses: actions/setup-dotnet@master
with:
dotnet-version: 3.1.101
- name: dotnet info
run: dotnet --info
- name: dotnet restore
run: dotnet restore ./src/JT809.Protocol.sln
- name: dotnet build
run: dotnet build ./src/JT809.Protocol.Test/JT809.Protocol.Test.csproj
- name: dotnet test
run: dotnet test ./src/JT809.Protocol.Test/JT809.Protocol.Test.csproj

불러오는 중...
취소
저장