Bump yapf from 0.40.2 to 0.43.0 #2483
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: CI | |
on: | |
push: | |
branches: [ 'main' ] | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
runner: [ ubuntu-latest, macos-14 ] | |
include: | |
- runner: ubuntu-latest | |
CC: clang-13 | |
CXX: clang++-13 | |
CLANG: clang-13 | |
- runner: macos-14 | |
CC: clang # This will be system AppleClang | |
CXX: clang++ # This will be system AppleClang | |
CLANG: /usr/local/opt/llvm/bin/clang | |
env: | |
CC: ${{matrix.CC}} | |
CXX: ${{matrix.CXX}} | |
CLANG: ${{matrix.CLANG}} | |
runs-on: ${{matrix.runner}} | |
steps: | |
- name: Checkout sources (including submodules) | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Setup Python environment | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.10' | |
cache: 'pip' | |
- name: Install Python dependencies | |
run: | | |
python -m pip install -U pip wheel | |
python -m pip install tox==3.24.5 | |
- name: Get latest CMake and ninja | |
uses: lukka/get-cmake@latest | |
- name: Setup SDE binaries | |
if: runner.os != 'macOS' | |
uses: petarpetrovt/[email protected] | |
- name: Install Clang 13 (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
wget https://apt.llvm.org/llvm.sh | |
chmod +x llvm.sh | |
sudo ./llvm.sh 13 | |
- name: Install Clang 13 (macOS) | |
if: runner.os == 'macOS' | |
run: brew install llvm@13 | |
- name: Run tox | |
run: tox | |
- name: Upload coverage to Codecov | |
uses: codecov/codecov-action@v4 | |
with: | |
fail_ci_if_error: true | |
token: ${{ secrets.CODECOV_TOKEN }} |