Remove G_APPLICATION_DEFAULT_FLAGS #98
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: Linux build | |
jobs: | |
build_and_test: | |
name: CI | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | |
- run: sudo apt-get update | |
- uses: awalsh128/cache-apt-pkgs-action@v1 | |
with: | |
packages: gcc-10 clang clang-format clang-tidy cppcheck liblmdb-dev libmecab-dev libgtk-3-dev \ | |
libx11-dev libcurl4-openssl-dev libnotify-dev libzip-dev zipcmp zipmerge ziptool libcgreen1-dev \ | |
gperf | |
version: 1.0 | |
- run: gcc --version | |
- run: clang-format --version | |
- run: cmake -S . -B build -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTS=ON | |
- run: cmake --build build | |
- run: cmake --build build --target check-all | |
on: | |
push: | |
paths: | |
- 'src/**' | |
- 'include/**' | |
- '.github/**' | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'include/**' | |
workflow_dispatch: |