Skip to content

Add files via upload #26

Add files via upload

Add files via upload #26

Workflow file for this run

name: test
# This CI workflow is responsible of running the tests.
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
concurrency:
cancel-in-progress: true
group: ${{ github.workflow }}-${{ github.ref }}
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
- name: Show the Foundry config
run: forge config
- name: Run Forge tests
run: |
forge test -vvv
id: test