mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-03-15 23:50:58 +00:00
* Use env variable to set where to run tests * Bump aqua version * Add periodic healtcheck * Report to slack on failure * Retry tests 3 times
24 lines
368 B
YAML
24 lines
368 B
YAML
name: Periodic healthcheck
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 * * * *'
|
|
|
|
concurrency:
|
|
group: "${{ github.workflow }}-${{ github.ref }}"
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
health:
|
|
|
|
strategy:
|
|
matrix:
|
|
env:
|
|
- krasnodar
|
|
- testnet
|
|
- stage
|
|
|
|
uses: ./.github/workflows/tests.yml
|
|
with:
|
|
fluence-env: ${{ matrix.env }}
|