This repository has been archived by the owner on Oct 31, 2024. It is now read-only.
Nightly Build #165
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: Nightly Build | |
on: # yamllint disable-line rule:truthy | |
schedule: | |
# * is a special character in YAML so you have to quote this string | |
- cron: '0 0 * * *' | |
jobs: | |
build: | |
name: Build | |
uses: ./.github/workflows/build.yml | |
test: | |
name: Test | |
uses: ./.github/workflows/test.yml | |
needs: build | |
secrets: | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
SONAR_HOST_URL: ${{ secrets.SONAR_HOST_URL }} | |
e2e: | |
name: Polybft E2E Tests | |
uses: ./.github/workflows/e2e-polybft.yml | |
needs: build | |
property: | |
name: Polybft Property Tests | |
uses: ./.github/workflows/property-polybft.yml | |
needs: build | |