Skip to content

Update dotnet.yml

Update dotnet.yml #2

Workflow file for this run

# 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: [ "dev" ]
pull_request:
branches: [ "dev" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- run: cd src/Neo4j.Berries.OGM
- run: dotnet build -c Release
test:
runs-on: ubuntu-latest
steps:
- run: cd tests/Neo4j.Berries.OGM.Tests
- run: dotnet test -c Release