# .github/workflows/c-cpp.yml # # GitHub CI # # Adapted from name: C/C++ CI on: - push - pull_request jobs: build: # See . strategy: matrix: os: [ubuntu-latest, macos-latest] steps: - uses: actions/checkout@v3 - name: configure run: ./configure - name: make run: make - name: make test run: make test