ObjFW  Artifact [b2befe0c8a]

Artifact b2befe0c8a916aa64a23e6e9a0ab08ff2c3bbaa0dcd60342b85d477e190db99f:


name: macos-10.15
on: [push, pull_request]
jobs:
  tests:
    runs-on: macos-10.15
    steps:
    - name: Install dependencies
      run: brew install autoconf automake
    - uses: actions/checkout@v2
    - name: autogen.sh
      run: ./autogen.sh
    - name: configure
      run: ./configure
    - name: make
      run: make -j$(sysctl -n hw.logicalcpu)
    - name: make check
      run: make check
    - name: make install
      run: sudo make install