ObjFW  ubuntu-18.04-gcc.yml at [6f5189d4f4]

File .github/workflows/ubuntu-18.04-gcc.yml artifact 26d6581f9a part of check-in 6f5189d4f4


name: ubuntu-18.04, GCC
on: [push, pull_request]
jobs:
  tests:
    runs-on: ubuntu-18.04
    steps:
    - name: Install dependencies
      run: sudo apt install gobjc
    - uses: actions/checkout@v2
    - name: autogen.sh
      run: ./autogen.sh
    - name: configure
      run: ./configure OBJC="gcc"
    - name: make
      run: make -j$(nproc)
    - name: make check
      run: make check
    - name: make install
      run: sudo make install