Run edgetest #737
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
# This workflow runs edgetest on rubicon @ At 10:00AM UTC on every day-of-week from Sunday through Thursday. | |
# https://github.com/fdosani/run-edgetest-action | |
name: Run edgetest | |
on: | |
schedule: | |
- cron: '0 10 * * 1-5' | |
workflow_dispatch: | |
jobs: | |
edgetest: | |
runs-on: ubuntu-latest | |
name: running edgetest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- id: run-edgetest | |
uses: fdosani/[email protected] | |
with: | |
edgetest-flags: '-c setup.cfg --export' | |
base-branch: 'main' | |
skip-pr: 'false' |