-
-
Notifications
You must be signed in to change notification settings - Fork 448
50 lines (42 loc) · 1.29 KB
/
pull-requests-v0.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
46
47
48
49
50
# https://github.com/eventflow/EventFlow/pull/967
name: pull-requests
on:
push:
branches: [ develop-v0 ]
pull_request:
branches: [ develop-v0 ]
jobs:
build:
runs-on: [self-hosted, windows-10]
env:
HELPZ_POSTGRESQL_USER: postgres
HELPZ_POSTGRESQL_PASS: Password12!
EVENTFLOW_MSSQL_SERVER: 127.0.0.1,1433
EVENTFLOW_MSSQL_USER: sa
EVENTFLOW_MSSQL_PASS: Password12!
RABBITMQ_URL: "amqp://guest:guest@localhost:5672"
EVENTSTORE_URL: "tcp://admin:changeit@localhost:1113"
ELASTICSEARCH_URL: "http://localhost:9200"
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Start containers used by integration tests
run: |
powershell -NoProfile -ExecutionPolicy unrestricted -Command ".\up-integration-environment.ps1"
- name: Run Bake
run: |
bake run --build-version 0.84.${{ github.run_number }}
- name: Upload NuGet packages
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: packages
path: "**/*nupkg"
if-no-files-found: error
- name: Upload test results
uses: actions/upload-artifact@v4
if: success() || failure()
with:
name: test-results
path: "**/*.trx"
if-no-files-found: error