Skip to content

Add initial set of Cursor rules #29

Add initial set of Cursor rules

Add initial set of Cursor rules #29

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install dependencies
run: forge install
- name: Run tests
run: |
forge coverage --report lcov
# Remove test coverage for test files
sed -i '/SF:.*test\//,/end_of_record/d' lcov.info
- name: Coveralls
uses: coverallsapp/github-action@v2