erfa-sys 0.2.1

Crate for providing bindings to and linking the ERFA C library.
Documentation
name: CI

on:
  push:
    branches:
    - master
    tags:
    - '*'
  pull_request:

jobs:
  tests:
    name: ${{ matrix.name }}
    runs-on: ${{ matrix.os }}
    strategy:
      fail-fast: false
      matrix:
        include:
          - name: linux (with gcc)
            os: ubuntu-latest

          - name: MacOS (with clang)
            os: macos-latest

    steps:
    - uses: actions/checkout@v2
      with:
        fetch-depth: 0
    - name: Install dependencies
      if: contains(matrix.os, 'macos')
      run: brew install autoconf automake libtool
    - name: bootstrap
      run: ./bootstrap.sh
    - name: configure
      run: ./configure --disable-shared
    - name: make
      run: make
    - name: make check
      run: make check
    - name: make distcheck
      run: make distcheck