Remove git diff from test workflows

This commit is contained in:
0xmuralik 2022-11-08 16:33:23 +05:30
parent c5c9ba81b1
commit abb195f004

View File

@ -37,7 +37,6 @@ jobs:
with: with:
file: ./coverage.txt file: ./coverage.txt
fail_ci_if_error: true fail_ci_if_error: true
if: env.GIT_DIFF
test-importer: test-importer:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -58,7 +57,6 @@ jobs:
- name: test-importer - name: test-importer
run: | run: |
make test-import make test-import
if: env.GIT_DIFF
test-rpc: test-rpc:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -79,7 +77,6 @@ jobs:
- name: Test rpc endpoint - name: Test rpc endpoint
run: | run: |
make test-rpc make test-rpc
if: env.GIT_DIFF
test-e2e: test-e2e:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -100,7 +97,6 @@ jobs:
- name: Test e2e - name: Test e2e
run: | run: |
make test-integration make test-integration
if: env.GIT_DIFF
# integration_tests: # integration_tests:
# runs-on: ubuntu-latest # runs-on: ubuntu-latest
@ -167,7 +163,6 @@ jobs:
- name: Test simulation nondeterminism - name: Test simulation nondeterminism
run: | run: |
make test-sim-nondeterminism make test-sim-nondeterminism
if: env.GIT_DIFF
test-sim-random-genesis-fast: test-sim-random-genesis-fast:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -187,7 +182,6 @@ jobs:
- name: Test simulation with random genesis - name: Test simulation with random genesis
run: | run: |
make test-sim-random-genesis-fast make test-sim-random-genesis-fast
if: env.GIT_DIFF
test-sim-import-export: test-sim-import-export:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -207,7 +201,6 @@ jobs:
- name: Simulation of import and export genesis - name: Simulation of import and export genesis
run: | run: |
make test-sim-import-export make test-sim-import-export
if: env.GIT_DIFF
test-sim-after-import: test-sim-after-import:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -227,4 +220,3 @@ jobs:
- name: Test simulation after import - name: Test simulation after import
run: | run: |
make test-sim-after-import make test-sim-after-import
if: env.GIT_DIFF