Skip to content

Bump actions/upload-artifact from 4.3.0 to 4.3.1 #107

Bump actions/upload-artifact from 4.3.0 to 4.3.1

Bump actions/upload-artifact from 4.3.0 to 4.3.1 #107

Workflow file for this run

# This is a format job. Pre-commit has a first-party GitHub action, so we use
# that: https://github.com/pre-commit/action
name: Format
on:
workflow_dispatch:
pull_request:
jobs:
pre-commit:
name: Format
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- name: Install clang-format-14
run: sudo apt-get install clang-format-14 cppcheck
- uses: pre-commit/action@v3.0.0
with:
extra_args: --all-files --hook-stage manual