* com.github.htrb.ngraph-gtk.metainfo.xml (releases): Update informat… #428
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: | |
- '**' # matches every branch | |
- '!gtk4' # excludes gtk4 | |
- '!columnview' # excludes columnview | |
- '!async-dialog' # excludes async-dialog | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Ubuntu Dependencies | |
run: > | |
sudo apt-get update -q && sudo apt-get install | |
--no-install-recommends -y libgtk-3-dev libgsl-dev libreadline-dev ruby ruby-dev libgtksourceview-4-dev gettext autopoint | |
- name: autoreconf | |
run: autoreconf --install | |
- name: configure | |
run: ./configure | |
- name: make | |
run: make | |
- name: make check | |
run: make check |