Skip to content

Increase version to 0.2.13 #16

Increase version to 0.2.13

Increase version to 0.2.13 #16

Workflow file for this run

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 .