chore(deps): bump actions/setup-python from 6 to 7 #516
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
| name: pre-commit | |
| on: | |
| pull_request: | |
| branches: [master] | |
| push: | |
| branches: [master] | |
| permissions: | |
| contents: read | |
| jobs: | |
| pre-commit: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-python@v7 | |
| with: | |
| python-version: "3.x" | |
| - name: Install dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y \ | |
| libgumbo-dev libfuse3-dev libssl-dev \ | |
| libcurl4-openssl-dev uuid-dev help2man libexpat1-dev pkg-config \ | |
| meson ninja-build astyle clang clang-tidy clang-format \ | |
| fuse3 python3 | |
| - name: Set up build directory | |
| run: | | |
| meson setup builddir | |
| - uses: pre-commit/action@v3.0.1 | |
| with: | |
| extra_args: --all-files --hook-stage pre-commit |