You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
506 B

  1. name: .NET Core
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@master
  8. - name: Setup .NET Core
  9. uses: actions/setup-dotnet@master
  10. with:
  11. dotnet-version: 9.0.100
  12. - name: dotnet info
  13. run: dotnet --info
  14. - name: dotnet restore
  15. run: dotnet restore ./src/JTActiveSafety.sln
  16. - name: dotnet JTActiveSafety.Protocol build
  17. run: dotnet build ./src/JTActiveSafety.Protocol.Test/JTActiveSafety.Protocol.Test.csproj