-
Notifications
You must be signed in to change notification settings - Fork 344
35 lines (35 loc) · 1016 Bytes
/
test.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
name: Test compilation
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- name: Install flake8
run: pip3 install flake8==3.9.2 flake8-bandit==2.1.2 bandit==1.7.2
- name: Run flake8
run: python3 -m flake8 .
compile-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: 3.9
- uses: egor-tensin/[email protected]
with:
version: latest
platform: x64
- name: Bootstrap
run: ./bootstrap.sh
- name: Configure
run: ./configure --without-gtk --without-jansson
- name: Make
run: make -j $(nproc)
- name: Run sample mtr against 1.1.1.1
run: ./mtr --report --report-cycles 1 -m 1 1.1.1.1
- name: Run test - cmdparse.py
run: python3 ./test/cmdparse.py