Skip to content

Commit

Permalink
Edit ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Vectorized committed Oct 13, 2024
1 parent 26956d5 commit 791ba07
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ jobs:
forge test --via-ir
) ||
( [ "${{ matrix.profile }}" = "min-solc" ] &&
forge fmt --check &&
forge test --use 0.8.4 --skip "*/g/*"
) ||
( [ "${{ matrix.profile }}" = "min-solc-via-ir" ] &&
Expand Down Expand Up @@ -128,7 +127,7 @@ jobs:
delete: ${{ !steps.gas_diff.outputs.markdown }}
message: ${{ steps.gas_diff.outputs.markdown }}

global-lib-checker :
prep-checker:
runs-on: ${{ matrix.os }}
strategy:
matrix:
Expand All @@ -137,9 +136,20 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Run global libs generator script
run: node prep/gen-globalized-libs
- name: Install Dependencies
run: forge install

- name: Run prep scripts and forge fmt
run: >
( node prep/gen-globalized-libs &&
forge fmt
)
- name: Check for file changes
run: |
Expand Down

0 comments on commit 791ba07

Please sign in to comment.