-
-
Notifications
You must be signed in to change notification settings - Fork 0
62 lines (56 loc) · 1.48 KB
/
check.yaml
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
name: check
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
env:
NODE_VERSION: 14
PYTHON_VERSION: 3.x
permissions:
contents: read
jobs:
c:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: install dependencies
run: sudo apt install -y lcov astyle
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd c && make version test build
go:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: setup go build environment
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
check-latest: true
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd go && make mod deps linter test GOPATH=$(go env GOPATH)
python:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@v4
- name: setup python build environment
uses: actions/setup-python@v2
with:
python-version: ${{ env.PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade virtualenv
- name: set RELEASE number
run: echo ${GITHUB_RUN_NUMBER} > RELEASE
- name: test
run: cd python && make vbuild