Skip to content

Commit

Permalink
1
Browse files Browse the repository at this point in the history
  • Loading branch information
storojs72 committed Aug 1, 2023
1 parent 9bfa385 commit 9efc9fa
Showing 1 changed file with 29 additions and 3 deletions.
32 changes: 29 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,38 @@ env:
FOUNDRY_PROFILE: ci

jobs:
check:
integration-tests:
strategy:
fail-fast: true

name: Foundry project
runs-on: ubuntu-latest
name: Integration Tests
runs-on: [self-hosted, anvil]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8

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

- name: Check formatting
run: |
forge fmt --check
id: formatting

unit-tests:
strategy:
fail-fast: true

name: Unit Tests
runs-on: [self-hosted, anvil]
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 9efc9fa

Please sign in to comment.