-
Notifications
You must be signed in to change notification settings - Fork 2
31 lines (28 loc) · 773 Bytes
/
pr.yml
File metadata and controls
31 lines (28 loc) · 773 Bytes
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
name: PR
on:
pull_request:
jobs:
build-sss-f:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Restore
run: dotnet restore
- name: Build
working-directory: src/SqlStreamStore.FSharp
run: dotnet build --no-restore --configuration Release
build-sss-f-postgres:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v1
with:
dotnet-version: '6.0.x'
- name: Restore
run: dotnet restore
- name: Build
working-directory: src/SqlStreamStore.FSharp.Postgres
run: dotnet build --no-restore --configuration Release