Run Slow-Tests only if PR #102
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: 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 |