diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml deleted file mode 100644 index 6d7d7bb624..0000000000 --- a/.github/workflows/black.yml +++ /dev/null @@ -1,29 +0,0 @@ -# This is a workflow to format Python code with black formatter - -name: black - -# 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] - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "black" - black: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - # Set up a Python environment for use in actions - - uses: actions/setup-python@v2 - - # Run black code formatter - - uses: psf/black@20.8b1 - with: - args: ". --check" diff --git a/.github/workflows/clang-format.yml b/.github/workflows/clang-format.yml deleted file mode 100644 index b2fa896dd4..0000000000 --- a/.github/workflows/clang-format.yml +++ /dev/null @@ -1,22 +0,0 @@ -# This is a workflow to format C/C++ sources with clang-format - -name: clang-format Check - -# 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] - -jobs: - formatting-check: - name: Formatting Check - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Run clang-format style check for C/C++ programs. - uses: jidicula/clang-format-action@v3.1.0 - with: - clang-format-version: '11' - check-path: 'dpctl-capi'