Skip to content

Commit

Permalink
Merge pull request #1 from blockful-io/fix-CICD
Browse files Browse the repository at this point in the history
Fix cicd
  • Loading branch information
LeonardoVieira1630 authored Oct 23, 2024
2 parents 8145173 + 8040e66 commit c5835e7
Showing 1 changed file with 17 additions and 4 deletions.
21 changes: 17 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
name: test

on: workflow_dispatch
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:

env:
FOUNDRY_PROFILE: ci
Expand All @@ -15,7 +20,15 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
submodules: false

- name: Install Bun
uses: oven-sh/setup-bun@v1
with:
bun-version: latest

- name: Install dependencies
run: bun install

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
Expand All @@ -30,5 +43,5 @@ jobs:

- name: Run Forge tests
run: |
forge test -vvv
id: test
forge test --fork-url ${{secrets.RPC_OP}} -vvv --via-ir
id: test

0 comments on commit c5835e7

Please sign in to comment.