launch command worker earlier #272
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: citest | |
on: | |
push: | |
pull_request: | |
release: | |
jobs: | |
citest: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v2 | |
#- 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 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 |