Skip to content

Commit

Permalink
feat: daily build and test against dev (#81)
Browse files Browse the repository at this point in the history
* feat: daily build and test against dev

* chore: update name

* chore: update naming
  • Loading branch information
stevennevins authored Oct 3, 2024
1 parent 3ed4462 commit 28636ba
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/daily-dev-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Daily Build And Test Dev

on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *'
jobs:
check:
strategy:
fail-fast: true
defaults:
run:
working-directory: ./contracts

name: Foundry project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
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: test

0 comments on commit 28636ba

Please sign in to comment.