clean up #38
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
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install LLVM and Clang | |
uses: KyleMayes/[email protected] | |
with: | |
version: "17.0" | |
- uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install Python Dependencies | |
run: pip install meson ninja | |
- name: Install Project Dependencies | |
run: sudo apt-get install -y libglfw3-dev libwayland-dev libvulkan-dev | |
- name: Prepare Build | |
run: meson setup build | |
env: | |
CC: clang | |
CXX: clang++ | |
- name: Run Build | |
run: meson compile -v -C build | |
env: | |
CC: clang | |
CXX: clang++ | |
- name: Run Test Suite | |
run: meson test -v -C build | |
env: | |
CC: clang | |
CXX: clang++ | |
name: Build Action | |
on: | |
pull_request: | |
push: |