Skip to content

Merge branch 'main' of https://github.com/mehrandvd/skunit #77

Merge branch 'main' of https://github.com/mehrandvd/skunit

Merge branch 'main' of https://github.com/mehrandvd/skunit #77

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
SOLUTION_PATH: 'src/skUnit.sln'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup .NET
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore ${{ env.SOLUTION_PATH }}
- name: Build
run: dotnet build ${{ env.SOLUTION_PATH }} --no-restore
# - name: Test
# run: dotnet test ${{ env.SOLUTION_PATH }} --filter GitHubActions!=Skip --no-build --verbosity normal