highlight matching brackets #63
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: build | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- run: sudo apt-get update && sudo apt-get install meson valac sassc libgtk-3-dev libpcre2-dev | |
- run: meson setup build | |
- run: ninja -C build |