Skip to content

Scheduled checks

Scheduled checks #242

---
on:
schedule:
- cron: '30 8 * * 1-5'
name: Scheduled checks
jobs:
tests:
name: Run tests
runs-on: [self-hosted, heavy]
steps:
- name: Potential broken submodules fix
run: |
git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || :
- name: Clone the repository
uses: actions/checkout@v3
- name: Test mainnet
run: cargo make --profile mainnet test
- name: Test testnet
run: cargo make --profile testnet test
checks:
name: Run checks
runs-on: [self-hosted, heavy]
steps:
- name: Potential broken submodules fix
run: |
git checkout -f $(git -c user.name=x -c user.email=x@x commit-tree $(git hash-object -t tree /dev/null) < /dev/null) || :
- name: Clone the repository
uses: actions/checkout@v3
- run: cargo make check