Skip to content

Commit

Permalink
chore: disable unused test workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
0xChin committed Aug 8, 2024
1 parent 738aa8a commit eddbe27
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ env:

jobs:
unit-tests:
if: false
name: Run Unit Tests
runs-on: ubuntu-latest
steps:
Expand All @@ -26,7 +27,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
cache: "yarn"

- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1
Expand All @@ -53,7 +54,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
cache: "yarn"

- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1
Expand All @@ -65,6 +66,7 @@ jobs:
run: yarn test:integration

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

Expand All @@ -83,7 +85,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
cache: "yarn"

- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1
Expand All @@ -101,6 +103,7 @@ jobs:
crytic-args: --ignore-compile

halmos-tests:
if: false
name: Run symbolic execution tests
runs-on: ubuntu-latest
steps:
Expand All @@ -115,7 +118,7 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
cache: "yarn"

- name: Install dependencies
run: yarn --frozen-lockfile --network-concurrency 1
Expand Down Expand Up @@ -146,9 +149,9 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
cache: "yarn"

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

- run: yarn lint:check
- run: yarn lint:check

0 comments on commit eddbe27

Please sign in to comment.