update README #32
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 CI | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| pull_request: | |
| branches: [ "main" ] | |
| jobs: | |
| build-macos: | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: 'true' | |
| - name: Update submodules | |
| run: git submodule update --init --recursive | |
| - name: Install dependencies | |
| run: | | |
| brew update | |
| brew install autoconf automake make gcc perl zlib bzip2 xz curl openssl libdeflate | |
| - name: make | |
| run: make | |
| - name: Run tests | |
| run: | | |
| ./bin/longcallD call --version |