🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
394 B

2 years ago
  1. name: Build cxxopts
  2. on:
  3. push:
  4. branches: [ $default-branch ]
  5. pull_request:
  6. branches: [ $default-branch ]
  7. workflow_dispatch:
  8. jobs:
  9. build:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v2
  13. - name: setup
  14. run: mkdir build; cd build
  15. - name: cmake
  16. run: cmake ..
  17. - name: Build
  18. run: make -j$(nproc)
  19. - name: test
  20. run: ctest