Skip to content

Commit

Permalink
Merge branch 'master' into refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
btrkeks authored May 3, 2024
2 parents 881dee4 + 9715a7c commit e253c4f
Show file tree
Hide file tree
Showing 6 changed files with 730 additions and 38 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Linux build

jobs:
build_and_test:
name: CI
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- 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
version: 1.0

- run: gcc --version

- run: make

on:
push:
paths:
- 'src/**'
- 'include/**'
pull_request:
paths:
- 'src/**'
- 'include/**'
workflow_dispatch:
Loading

0 comments on commit e253c4f

Please sign in to comment.