Increase version to 0.2.13 #16
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: macos | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- 'src/**' | |
- '.github/workflows/macos.yml' | |
- 'CMakeLists.txt' | |
pull_request: | |
paths: | |
- 'src/**' | |
- '.github/workflows/macos.yml' | |
- 'CMakeLists.txt' | |
jobs: | |
macos: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: install dependencies SDL2 ogg vorbis | |
run: brew install sdl2 libogg libvorbis | |
- name: cmake --version | |
run: cmake --version | |
- name: build project | |
run: | | |
mkdir build && cd build | |
cmake .. && cmake --build . | |