dotnetcore.yml 385 B

12345678910111213141516171819
  1. name: .NET Core
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: ubuntu-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. - name: Setup .NET Core
  9. uses: actions/setup-dotnet@v1
  10. with:
  11. dotnet-version: 3.1.101
  12. - name: Test
  13. run: dotnet test DOCXTests/
  14. - name: Build with dotnet
  15. run: dotnet build --configuration Release --framework netcoreapp3.1 DOCX/