Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
Run linting script in CI
Browse files Browse the repository at this point in the history
Change-Id: I03278aab8ed25c777cd10b939c281b00028a6726
  • Loading branch information
hikari-no-yume committed Nov 7, 2023
1 parent 3379d6c commit d941d0b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/touchHLE_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ jobs:
run: git submodule update --init
- name: Install Boost
run: brew install boost
# This is the earliest point at which we can do linting: clippy will end up
# building dynarmic, which needs Boost, but we don't need LLVM until
# building tests.
- name: Lint
run: dev-scripts/lint.sh
- name: Try to get cached copy of LLVM
id: cache-llvm
uses: actions/cache@v3
Expand Down Expand Up @@ -69,6 +74,12 @@ jobs:
- if: ${{ steps.cache-boost.outputs.cache-hit != 'true' }}
name: Extract Boost
run: 7z -ovendor x boost_1_81_0.7z && ren vendor\boost_1_81_0 boost
# This is the earliest point at which we can do linting: clippy will end up
# building dynarmic, which needs Boost, but we don't need LLVM until
# building tests.
- name: Lint
shell: bash # no command output without this
run: dev-scripts/lint.sh
- name: Try to get cached copy of LLVM
id: cache-llvm
uses: actions/cache@v3
Expand Down

0 comments on commit d941d0b

Please sign in to comment.