Skip to content

Commit

Permalink
run ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vmaark committed Dec 12, 2024
1 parent 528245d commit fbe9e87
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: test

on:
workflow_dispatch:
pull_request:
push:
branches:
- "main"

env:
FOUNDRY_PROFILE: ci

jobs:
foundry:
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: Run Forge build
run: |
forge --version
forge build --sizes
id: build

- name: Run Forge tests
run: |
forge test -vvv
id: forge-test

- name: Forge style
run: |
forge fmt --check

0 comments on commit fbe9e87

Please sign in to comment.