audcore: Allow retrieving all supported file extensions #230
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: C/C++ CI | |
| on: | |
| push: | |
| branches: [ "master" ] | |
| pull_request: | |
| branches: [ "master" ] | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-22.04, ubuntu-24.04, | |
| macos-15-intel, macos-26, | |
| windows-2022] | |
| build-system: [autotools, meson] | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - name: Checkout audacious | |
| uses: actions/checkout@v5 | |
| - name: Install dependencies | |
| uses: ./.github/actions/install-dependencies | |
| with: | |
| os: ${{ matrix.os }} | |
| build-system: ${{ matrix.build-system }} | |
| - name: Configure | |
| uses: ./.github/actions/run-action | |
| with: | |
| action: 'configure' | |
| os: ${{ matrix.os }} | |
| build-system: ${{ matrix.build-system }} | |
| - name: Build | |
| uses: ./.github/actions/run-action | |
| with: | |
| action: 'build' | |
| os: ${{ matrix.os }} | |
| build-system: ${{ matrix.build-system }} | |
| - name: Test | |
| if: startsWith(matrix.os, 'ubuntu') | |
| uses: ./.github/actions/run-action | |
| with: | |
| action: 'test' | |
| os: ${{ matrix.os }} | |
| build-system: ${{ matrix.build-system }} |