-
-
Notifications
You must be signed in to change notification settings - Fork 7
132 lines (110 loc) · 3.06 KB
/
sdks-check.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
name: SDK
on:
push:
branches:
- master
pull_request:
jobs:
go-sdk:
name: Go Check
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ "1.22", "1.23" ]
timeout-minutes: 30
defaults:
run:
working-directory: ./sdk/go
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Test
run: go test -v -coverprofile=coverage.out -covermode=atomic -race ./...
- name: Codecov
uses: codecov/codecov-action@v3
with:
flags: sdk-go
js-sdk:
name: JavaScript Check
runs-on: ubuntu-latest
container: node:lts
timeout-minutes: 30
defaults:
run:
working-directory: ./sdk/javascript
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Update OS
run: >
apt-get update -y && apt-get upgrade -y &&
apt-get install -y curl tar gzip openssl build-essential &&
curl -LO https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb &&
apt install -y ./google-chrome-stable_current_amd64.deb
- name: Install dependency
run: npm ci
- name: Lint
run: npx eslint --fix --ext .ts --ignore-path .gitignore .
- name: Test
run: npx vitest run --coverage --threads=false
- name: Codecov
uses: codecov/codecov-action@v3
with:
flags: sdk-javascript
dotnet-sdk:
name: .NET Check
runs-on: ubuntu-latest
strategy:
matrix:
dotnet-version: [ '3.x', '6.x', '8.x' ]
timeout-minutes: 30
defaults:
run:
working-directory: ./sdk/dotnet
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet-version }}
- name: Test
run: dotnet test Pesto.sln --collect "XPlat Code Coverage"
- name: Codecov
uses: codecov/codecov-action@v3
with:
flags: sdk-dotnet
python-sdk:
name: Python Check
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ '3.9', '3.11', '3.12' ]
timeout-minutes: 30
defaults:
run:
working-directory: ./sdk/python
steps:
- name: Checkout code
uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-test.txt
- name: Formatting
run: black --check pesto tests
- name: Lint
run: mypy pesto tests
- name: Run Pytest
run: pytest . --cov-report term-missing --cov-report xml --cov pesto
- name: Code Coverage Report
uses: codecov/codecov-action@v3
with:
flags: sdk-python