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

feat: use soldeer

feat: use soldeer #49

Workflow file for this run

name: test
on: [push, pull_request]
env:
FOUNDRY_PROFILE: ci
jobs:
check:
strategy:
fail-fast: true
name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly
- name: Install Dependencies
with:
version: nightly
run: |

Check failure on line 28 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / test

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 28, Col: 9): Unexpected value 'run' .github/workflows/test.yml (Line: 25, Col: 9): Required property is missing: uses
forge soldeer install
id: install
- name: Run Forge build
run: |
forge --version
forge build --sizes
id: build
- name: Run Forge tests
run: |
forge test --isolate -vvv
id: test