audio_i2sin module for espressif and raspberrypi #16110
Workflow file for this run
This file contains hidden or 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
| # SPDX-FileCopyrightText: Copyright (c) 2019 Anthony Sottile | |
| # | |
| # SPDX-License-Identifier: MIT | |
| name: pre-commit | |
| on: | |
| push: | |
| pull_request: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Set up repository | |
| uses: actions/checkout@v6 | |
| with: | |
| submodules: false | |
| show-progress: false | |
| fetch-depth: 1 | |
| persist-credentials: false | |
| - name: Set up python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: 3.x | |
| - name: Set up submodules | |
| uses: ./.github/actions/deps/submodules | |
| - name: Set up external | |
| uses: ./.github/actions/deps/external | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y gettext | |
| - name: Run pre-commit | |
| uses: pre-commit/action@v3.0.1 | |
| - name: Make patch | |
| if: failure() | |
| run: git diff > ~/pre-commit.patch | |
| - name: Upload patch | |
| if: failure() | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: patch | |
| path: ~/pre-commit.patch |