Skip to content

Remove main.yml, updated actions on dotnetcore.yml #2

Remove main.yml, updated actions on dotnetcore.yml

Remove main.yml, updated actions on dotnetcore.yml #2

Workflow file for this run

name: .NET Core
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-dotnet@v3
with:
dotnet-version: 5.0.x
- run: dotnet restore
working-directory: Tests
- run: dotnet test --no-restore --verbosity normal
working-directory: Tests