~ruther/NosSmooth

b6c7904cc0b256d68cb23e9783ddfab4edc319e4 — Rutherther 2 years ago ba3fab8
chore: add ci tests
1 files changed, 30 insertions(+), 0 deletions(-)

A .github/workflows/build-test.yml
A .github/workflows/build-test.yml => .github/workflows/build-test.yml +30 -0
@@ 0,0 1,30 @@
# This workflow will build a .NET project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-net

name: .NET

on:
  push:
    branches: [ "main" ]
  pull_request:
    branches: [ "main" ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v3
    - name: Setup .NET
      uses: actions/setup-dotnet@v3
      with:
        dotnet-version: | 
          6.0.x
          7.0.x
    - name: Restore dependencies
      run: dotnet restore
    - name: Build
      run: dotnet build --no-restore
    - name: Test
      run: dotnet test --no-build --verbosity normal

Do not follow this link