Skip to content

Commit

Permalink
set up GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
eyelash committed Nov 20, 2023
1 parent 670e910 commit 8865ca8
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,7 @@ end_of_line = lf

[gral_windows.cpp]
end_of_line = crlf

[*.yml]
indent_style = space
indent_size = 2
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: CI
on: push
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- if: runner.os == 'Linux'
run: sudo apt-get install libgtk-3-dev libasound2-dev
- run: cmake -S . -B build -D BUILD_DEMOS=YES
- run: cmake --build build

0 comments on commit 8865ca8

Please sign in to comment.