diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index ece52f7..14b004a 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -16,10 +16,16 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest] + os: [ubuntu-latest, macos-latest] steps: + # Download dependencies depending on platform - name: Download build tools + if: matrix.os == "ubuntu-latest" run: sudo apt-get install build-essential libtool autopoint + - name: Download build tools + if: matrix.os == "macos-latest" + run: sudo brew install libtool automake gettext + - name: Checkout repository uses: actions/checkout@v3 - name: Download dependencies