ci.yml 617 B

123456789101112131415161718192021222324252627282930313233
  1. name: CI
  2. on:
  3. push:
  4. paths-ignore:
  5. - 'docs/**'
  6. - 'LICENSE'
  7. - 'read.me'
  8. - 'README.md'
  9. pull_request:
  10. paths-ignore:
  11. - 'docs/**'
  12. - 'LICENSE'
  13. - 'read.me'
  14. - 'README.md'
  15. env:
  16. TEST_REF_FORBID_GEN_REFS: true
  17. jobs:
  18. tests-windows:
  19. strategy:
  20. matrix:
  21. os: [windows-2019]
  22. compiler: [msvc, g++, clang++]
  23. name: Use ${{ matrix.compiler }} on ${{ matrix.os }}
  24. runs-on: ${{ matrix.os }}
  25. steps:
  26. - uses: actions/checkout@v3
  27. - name: Run tests
  28. run: |
  29. cd tests
  30. bash ./run.sh ${{ matrix.compiler }}