mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-03-16 05:51:08 +00:00
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 }}
|