Skip to content

Run Slow-Tests only if PR #102

Run Slow-Tests only if PR

Run Slow-Tests only if PR #102

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- "github-pages/*"
- "gh-pages/*"
- "main"
- "master"
pull_request:
types: [opened, reopened]
schedule:
# “At 00:00 on every 7th day-of-month from 1 through 31.” (https://crontab.guru)
- cron: "0 0 1/7 * *"
jobs:
checks:
name: Checks
uses: ./.github/workflows/checks.yml
Tests:
name: Tests
uses: ./.github/workflows/tests_with_coverage.yml
# This job ensures inputs have been executed successfully.
approve-merge:
name: Allow Merge
runs-on: ubuntu-latest
# If you need additional jobs to be part of the merge gate, add them below
needs: [ Tests ]
# Each job requires a step, so we added this dummy step.
steps:
- name: Approve
run: |
echo "Merge Approved"
Metrics:
needs: [ Tests ]
uses: ./.github/workflows/report.yml