Skip to content

Update workflow

Update workflow #112

Workflow file for this run

name: Tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:

Check failure on line 9 in .github/workflows/dotnetcore.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/dotnetcore.yml

Invalid workflow file

You have an error in your yaml syntax on line 9
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: '9.0.x'
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Test with the dotnet CLI
run: dotnet test --no-build