forked from grpc/grpc-dotnet
-
Notifications
You must be signed in to change notification settings - Fork 6
46 lines (35 loc) · 821 Bytes
/
test.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
name: Build and Test
on:
push:
branches: [ master ]
pull_request:
branches: [ '**' ]
schedule:
- cron: 0 0 * * * # daily at 00:00
env:
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
jobs:
build:
name: Basic Tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Install dotnet
run: ./build/get-dotnet.sh
- name: Build and run tests
run: ./build_and_test.sh
- uses: actions/upload-artifact@v4
if: always()
with:
name: artifacts
path: artifacts
if-no-files-found: error
grpc_web:
name: gRPC-Web Tests
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4
- name: Run interop tests
run: ./grpcweb_interoptests.sh