Skip to content

Bump actions/upload-artifact from 4.3.6 to 4.4.3 #3045

Bump actions/upload-artifact from 4.3.6 to 4.4.3

Bump actions/upload-artifact from 4.3.6 to 4.4.3 #3045

# This is a workflow to format C/C++ sources with clang-format
name: C++ Code Style
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
pull_request:
push:
branches: [master]
permissions: read-all
jobs:
formatting-check:
name: clang-format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run clang-format style check for C/C++ programs.
uses: jidicula/clang-format-action@v4.13.0
with:
clang-format-version: '14'
check-path: 'numba_dpex/dpctl_iface'