25개 이상의 토픽을 선택하실 수 없습니다.
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 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: 6.0.400
- - name: dotnet info
- run: dotnet --info
- - name: dotnet JT808.Gateway restore
- run: dotnet restore ./src/JT808.Gateway.sln
- - name: dotnet JT808.Gateway build
- run: dotnet build ./src/JT808.Gateway.Tests/JT808.Gateway.Test/JT808.Gateway.Test.csproj
- - name: dotnet JT808.Gateway test
- run: dotnet test ./src/JT808.Gateway.Tests/JT808.Gateway.Test/JT808.Gateway.Test.csproj
|