Skip to content

ci-dgraph-net-tests #169

ci-dgraph-net-tests

ci-dgraph-net-tests #169

name: ci-dgraph-net-tests
on:
push:
branches:
- main
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
branches:
- main
schedule:
- cron: 0 0 * * *
permissions:
contents: read
jobs:
dotnet-tests:
name: dotnet-tests
runs-on: ubuntu-latest
steps:
- name: Checkout Dgraph.net
uses: actions/checkout@v4
- name: Setup .NET Core SDK
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Test
run: dotnet test --no-restore --verbosity normal