CI: Remove travis #12
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: C/C++ CI | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo apt-get install -y meson ninja-build swig python3-dev valgrind | |
- run: | | |
meson setup _build | |
cd _build | |
ninja -v | |
ninja test -v | |
meson test --setup=valgrind | |
- name: Test swig | |
run: | | |
cd _build | |
meson configure -Dswig_lang=python | |
ninja clean | |
ninja -v |