Bump actions/checkout from 6 to 7 in the github-actions group #241
This file contains hidden or 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: | |
| - 'resinstaller/src/**' | |
| - 'src/**' | |
| - 'submodules/**' | |
| - 'test/**' | |
| - '.github/workflows/macos.yml' | |
| - 'CMakeLists.txt' | |
| - 'mk/cmake/**' | |
| pull_request: | |
| paths: | |
| - 'resinstaller/src/**' | |
| - 'src/**' | |
| - 'submodules/**' | |
| - 'test/**' | |
| - '.github/workflows/macos.yml' | |
| - 'CMakeLists.txt' | |
| - 'mk/cmake/**' | |
| jobs: | |
| macos: | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| submodules: recursive | |
| - name: install dependencies | |
| run: brew install sdl2 sdl2_mixer sdl2_net libogg libvorbis | |
| - name: cmake --version | |
| run: cmake --version | |
| - name: test projects | |
| run: | | |
| mkdir build && cd build | |
| cmake .. -DBUILD_TESTING=1 | |
| make maxr_dedicatedserver maxr maxr_tests resinstaller -j4 | |
| ctest | |
| ./maxr_tests | |