-
Notifications
You must be signed in to change notification settings - Fork 69
39 lines (35 loc) · 845 Bytes
/
citest.yml
File metadata and controls
39 lines (35 loc) · 845 Bytes
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
name: citest
on:
push:
pull_request:
release:
jobs:
citest:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v6
#- name: Setup tmate session, see https://github.com/marketplace/actions/debugging-with-tmate
# uses: mxschmitt/action-tmate@v3
- name: prepare machine
run: |
sudo apt-get update
sudo apt-get install \
autoconf \
build-essential \
libglib2.0-dev \
gperf \
check \
help2man \
python3-pip \
flake8 \
python3-behave
- name: run build
run: |
./autogen.sh
make
- name: run tests
run: |
make check VERBOSE=1
make distcheck
flake8 features/
behave