-
Notifications
You must be signed in to change notification settings - Fork 18
45 lines (38 loc) · 854 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
name: Build
on:
push:
branches:
- master
pull_request:
branches:
- master
workflow_dispatch:
jobs:
build:
timeout-minutes: 20
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
dotnet:
- 8.x
arango:
- "arangodb:3.11"
- "arangodb:latest"
# - "arangodb/enterprise:3.9"
topology:
- single
# - cluster
steps:
- uses: actions/checkout@v4
- name: dotnet
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: build
run: dotnet build --configuration Release
- name: test
run: dotnet test --configuration Release
env:
ARANGODB_VERSION: ${{ matrix.arango }}
ARANGODB_TOPOLOGY: ${{ matrix.topology }}