Work on pimpl_my_class doc #295
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: "ci_build_and_test" | |
on: | |
workflow_dispatch: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@master | |
- name: Checkout submodules | |
run: git submodule update --init --recursive | |
- name: Set up GCC (update gcc) | |
uses: egor-tensin/setup-gcc@v1 | |
with: | |
version: 11 | |
platform: x64 | |
- name: Install srcML | |
run : sudo ./ci_scripts/install_srcml_ubuntu.sh | |
- name: install_srcml_reqs_ubuntu | |
run : ./ci_scripts/install_srcmlcaller_reqs_ubuntu.sh | |
- name: Install poetry | |
run: curl -sSL https://install.python-poetry.org | python3 - | |
# - name: Setup interactive tmate session | |
# uses: mxschmitt/action-tmate@v3 | |
- name: Full build and test | |
run: | | |
/bin/bash ci_scripts/ci_build_and_test.sh |