Skip to content

Commit

Permalink
ci: decrease amount of parallel tasks in schedule CI
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Sep 6, 2024
1 parent 9cb8359 commit 9c3353c
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/scheduled_lints.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
on:
schedule:
- cron: '30 8 * * 1-5'
- cron: '0 8 * * 1-5'
name: Scheduled checks
jobs:
tests:
Expand All @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
profile: [ mainnet, testnet, mainnet-silo, testnet-silo ]
profile: [ mainnet, testnet ]
steps:
- name: Potential broken submodules fix
run: |
Expand All @@ -21,6 +21,8 @@ jobs:
run: scripts/build-neard-sandbox.sh ${{ matrix.profile }}
- name: Test ${{ matrix.profile }}
run: cargo make --profile ${{ matrix.profile }} test-flow
- name: Test ${{ matrix.profile }}-silo
run: cargo make --profile ${{ matrix.profile }}-silo test-flow

checks:
name: Run checks
Expand Down

0 comments on commit 9c3353c

Please sign in to comment.