diff options
| author | HiFiPhile <[email protected]> | 2024-02-01 11:12:20 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2024-02-01 11:12:20 +0100 |
| commit | d692d7783408dc5ac1f3d21b40b06eff6d722910 (patch) | |
| tree | 2e9ec39d15071c5ce37a437aac729245da6ef57e /.github/workflows/pre-commit.yml | |
| parent | 4c510c12b1d0a0bfb0726c0100ff22cd892aa1e8 (diff) | |
| parent | f505cc2add915c2e68c5d26a2804757c6b904bfe (diff) | |
Merge branch 'master' into src/portable/synopsys/dwc2/fix_sof_int_handling
Diffstat (limited to '.github/workflows/pre-commit.yml')
| -rw-r--r-- | .github/workflows/pre-commit.yml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/.github/workflows/pre-commit.yml b/.github/workflows/pre-commit.yml index d2150d13f..e36259daa 100644 --- a/.github/workflows/pre-commit.yml +++ b/.github/workflows/pre-commit.yml @@ -1,6 +1,7 @@ name: pre-commit on: + workflow_dispatch: push: pull_request: branches: [ master ] @@ -14,7 +15,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Setup Python - uses: actions/setup-python@v4 + uses: actions/setup-python@v5 with: python-version: '3.x' @@ -24,17 +25,16 @@ jobs: ruby-version: '3.0' - name: Checkout TinyUSB - uses: actions/checkout@v3 + uses: actions/checkout@v4 - - name: Run codespell - uses: codespell-project/actions-codespell@master - - - name: Run Unit Tests + - name: Get Dependencies run: | - # Install Ceedling gem install ceedling - cd test/unit-test - ceedling test:all + #cd test/unit-test + #ceedling test:all + + - name: Run pre-commit + uses: pre-commit/[email protected] - name: Build Fuzzer run: | |
