typo #20
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "C++" | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- 'README.rst' | |
- '**/README.rst' | |
schedule: | |
- cron: "0 0 1 * *" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
cpp-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Setup clang-tidy | |
uses: awalsh128/cache-apt-pkgs-action@latest | |
with: | |
packages: clang-tidy | |
version: 1.0 | |
- name: Run tests | |
run: make cp_lint | |
cpp: | |
strategy: | |
fail-fast: false | |
matrix: | |
# compiler: ["llvm", "gcc"] | |
# # compiler targets (ideally): clang, gcc, MSVCC, icc, | |
os: [ubuntu-latest, windows-latest, macos-latest, macos-13] | |
# include: | |
# - os: windows-latest | |
# compiler: msvc | |
# - os: windows-latest | |
# compiler: mingw | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
submodules: true | |
- name: Use Python 3.10 | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.10" | |
cache-dependency-path: '*/requirements.txt' | |
- name: Setup MSVC | |
uses: aminya/setup-cpp@v1 | |
if: ${{ contains(matrix.os, 'windows') }} | |
with: | |
compiler: msvc | |
vcvarsall: true | |
# - name: Set up MinGW | |
# if: ${{ contains(matrix.os, 'windows') }} | |
# uses: egor-tensin/setup-mingw@v2 | |
# with: | |
# platform: x64 | |
- name: Run tests (linux) | |
if: ${{ contains(matrix.os, 'ubuntu') }} | |
run: make cp_test COV=true | |
- name: Run tests (windows) | |
if: ${{ contains(matrix.os, 'windows') }} | |
run: make cp_test_auto | |
- name: Run tests (macos) | |
if: ${{ contains(matrix.os, 'macos') }} | |
run: make cp_test_auto | |
env: | |
NO_OPTIONAL_TESTS: true | |
COMPILER_OVERRIDE: clang | |
- name: Upload coverage reports to Codecov | |
uses: codecov/[email protected] | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |