123456789101112131415161718192021222324252627282930313233 |
- name: CI
- on:
- push:
- paths-ignore:
- - 'docs/**'
- - 'LICENSE'
- - 'read.me'
- - 'README.md'
- pull_request:
- paths-ignore:
- - 'docs/**'
- - 'LICENSE'
- - 'read.me'
- - 'README.md'
- env:
- TEST_REF_FORBID_GEN_REFS: true
- jobs:
- tests-windows:
- strategy:
- matrix:
- os: [windows-2019]
- compiler: [msvc, g++, clang++]
- name: Use ${{ matrix.compiler }} on ${{ matrix.os }}
- runs-on: ${{ matrix.os }}
- steps:
- - uses: actions/checkout@v3
- - name: Run tests
- run: |
- cd tests
- bash ./run.sh ${{ matrix.compiler }}
|