Skip to content

net8.0

net8.0 #100

Workflow file for this run

name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dotnet:
- 8.x
arango:
- "arangodb:3.11"
- "arangodb:3.10"
steps:
- uses: actions/checkout@v3
- name: ArangoDB ${{ matrix.arango }}
run: docker run -d --rm -e ARANGO_ROOT_PASSWORD= -p 8529:8529 ${{ matrix.arango }}
- name: Setup .NET ${{ matrix.dotnet }}
uses: actions/setup-dotnet@v3
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Build
run: dotnet build --configuration Release
- name: Test
run: dotnet test --configuration Release