ci-cmake.yml 299 B

123456789101112131415
  1. name: CI (CMake)
  2. on:
  3. push:
  4. branches: [main]
  5. jobs:
  6. build:
  7. runs-on: ${{ matrix.os }}
  8. strategy:
  9. fail-fast: false
  10. matrix:
  11. os: [macos-latest, ubuntu-latest, windows-latest]
  12. steps:
  13. - uses: actions/checkout@v2
  14. - run: .github/cmake.sh
  15. shell: bash