Skip to content

Commit

Permalink
Add basic github build check
Browse files Browse the repository at this point in the history
  • Loading branch information
Optiroc authored Mar 9, 2024
1 parent c492dda commit 30857be
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build check

on:
pull_request:
push:
branches: main

jobs:
build_ubuntu:
name: Linux
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
make
build_macos:
name: macOS
runs-on: macos-14
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
make
build_windows:
name: Windows
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build
run: |
mkdir .build && cd .build && cmake .. && cmake --build . --config Release

0 comments on commit 30857be

Please sign in to comment.