Skip to content

Commit

Permalink
feat(ci): check for files
Browse files Browse the repository at this point in the history
  • Loading branch information
0xfourzerofour committed Aug 25, 2023
1 parent 3c1ab73 commit 0341475
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,23 @@ jobs:
uses: foundry-rs/foundry-toolchain@v1
- name: Run tests
run: cargo test

spec-test:
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v3
- name: Install protobuf
run: sudo apt-get install -y protobuf-compiler
- name: Install toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: 1.71.0
- uses: Swatinem/rust-cache@v2
with:
cache-on-failure: true
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- uses: pdm-project/setup-pdm@v3
name: Setup PDM
with:
Expand Down
2 changes: 1 addition & 1 deletion test/spec-tests/ci/run-spec-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -x
cd "$(dirname "$0")"

(cd ../bundler-spec-tests && pdm install && pdm run update-deps)
(cd ../bundler-spec-tests && ls -la && pdm install && pdm run update-deps)

docker build ../../.. -t alchemy-platform/rundler:latest

Expand Down

0 comments on commit 0341475

Please sign in to comment.