Skip to content

Commit

Permalink
chore: disabling unused tests
Browse files Browse the repository at this point in the history
  • Loading branch information
RonTuretzky committed Dec 28, 2024
1 parent 687e9b5 commit e963a09
Showing 1 changed file with 114 additions and 114 deletions.
228 changes: 114 additions & 114 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,120 +11,120 @@ env:
SEPOLIA_RPC: ${{ secrets.SEPOLIA_RPC }}

jobs:
unit-tests:
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

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

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'

- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1

- name: Precompile
run: yarn build

- name: Run tests
shell: bash
run: yarn test:unit

integration-tests:
name: Run Integration Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

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

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'

- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1

- name: Precompile
run: yarn build

- name: Run tests
run: yarn test:integration

echidna-tests:
name: Echidna Test
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive

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

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'

- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1

- name: Compile contracts
run: |
forge build --build-info
- name: Run Echidna
uses: crytic/echidna-action@v2
with:
files: .
contract: InvariantGreeter
test-mode: assertion
crytic-args: --ignore-compile

halmos-tests:
name: Run symbolic execution tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

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

- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'

- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1

- name: Precompile
run: yarn build

- name: Run tests
run: yarn test:integration
# unit-tests:
# name: Run Unit Tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

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

# - name: Use Node.js
# uses: actions/setup-node@v4
# with:
# node-version: 20.x
# cache: 'yarn'

# - name: Install dependencies
# run: yarn --frozen-lockfile --network-concurrency 1

# - name: Precompile
# run: yarn build

# - name: Run tests
# shell: bash
# run: yarn test:unit

# integration-tests:
# name: Run Integration Tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

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

# - name: Use Node.js
# uses: actions/setup-node@v4
# with:
# node-version: 20.x
# cache: 'yarn'

# - name: Install dependencies
# run: yarn --frozen-lockfile --network-concurrency 1

# - name: Precompile
# run: yarn build

# - name: Run tests
# run: yarn test:integration

# echidna-tests:
# name: Echidna Test
# runs-on: ubuntu-latest

# steps:
# - name: Checkout repository
# uses: actions/checkout@v4
# with:
# submodules: recursive

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

# - name: Use Node.js
# uses: actions/setup-node@v4
# with:
# node-version: 20.x
# cache: 'yarn'

# - name: Install dependencies
# run: yarn --frozen-lockfile --network-concurrency 1

# - name: Compile contracts
# run: |
# forge build --build-info

# - name: Run Echidna
# uses: crytic/echidna-action@v2
# with:
# files: .
# contract: InvariantGreeter
# test-mode: assertion
# crytic-args: --ignore-compile

# halmos-tests:
# name: Run symbolic execution tests
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4

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

# - name: Use Node.js
# uses: actions/setup-node@v4
# with:
# node-version: 20.x
# cache: 'yarn'

# - name: Install dependencies
# run: yarn --frozen-lockfile --network-concurrency 1

# - name: Precompile
# run: yarn build

# - name: Run tests
# run: yarn test:integration

lint:
name: Lint Commit Messages
Expand Down

0 comments on commit e963a09

Please sign in to comment.