ccpp.yml 280 B

123456789101112131415161718
  1. name: C/C++ CI
  2. on: [push, pull_request]
  3. jobs:
  4. build:
  5. strategy:
  6. matrix:
  7. os: [ubuntu-latest, macos-latest]
  8. runs-on: ${{ matrix.os }}
  9. steps:
  10. - uses: actions/checkout@v2
  11. - name: make
  12. run: make
  13. - name: make check
  14. run: make check