Skip to content

Commit

Permalink
Add github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
rya-sge committed Aug 29, 2024
1 parent 20d00a8 commit 4ab48f3
Show file tree
Hide file tree
Showing 3 changed files with 401 additions and 34 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Foundry CI

on:
push:
branches: [dev, master, main]
pull_request:
branches: [dev, master, main]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Run Forge install
run: forge install

- name: Run Forge build
run: forge build --sizes

- name: Run Forge tests
run: forge test -vvv
34 changes: 0 additions & 34 deletions .github/workflows/test.yml

This file was deleted.

Loading

0 comments on commit 4ab48f3

Please sign in to comment.