ObjFW  macos-11.yml at [6f5189d4f4]

File .github/workflows/macos-11.yml artifact 1bf239c224 part of check-in 6f5189d4f4


name: macos-11
on: [push, pull_request]
jobs:
  tests:
    runs-on: macos-11
    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