Skip to content

Commit

Permalink
add evm workflow file
Browse files Browse the repository at this point in the history
  • Loading branch information
barnjamin committed May 13, 2024
1 parent 08732d1 commit 68723ca
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 1 deletion.
31 changes: 31 additions & 0 deletions .github/workflows/evm.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: evm
on:
workflow_dispatch:
pull_request:
paths:
- 'evm/**'
push:
branches:
- main
env:
FOUNDRY_PROFILE: ci
jobs:
test:
strategy:
fail-fast: true
name: forge test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Run Forge build
working-directory: evm
run: make build
- name: Run unit tests
working-directory: evm
run: make test
4 changes: 3 additions & 1 deletion .github/workflows/solana.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@ on:
branches:
- main
- solana/integration
pull_request: null
pull_request:
paths:
- 'solana/**'

env:
RUSTC_VERSION: 1.75.0
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/universal-rs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
push:
branches: [main]
pull_request:
paths:
- 'universal/**'

env:
CARGO_TERM_COLOR: always
Expand Down

0 comments on commit 68723ca

Please sign in to comment.