Non puoi selezionare più di 25 argomenti
Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
|
- 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: 9.0.100
- - name: dotnet info
- run: dotnet --info
- - name: dotnet restore
- run: dotnet restore ./src/JTActiveSafety.sln
- - name: dotnet JTActiveSafety.Protocol build
- run: dotnet build ./src/JTActiveSafety.Protocol.Test/JTActiveSafety.Protocol.Test.csproj
|