Skip to content

CI Triggered On Pull-Request #211

CI Triggered On Pull-Request

CI Triggered On Pull-Request #211

# Pull request workflow to run CI on PRs.
# Triggered on opened or reopened pull requests.
# Defines one job that reuses the ci.yml workflow.
# ci.yml will run lint, tests, coverage, build for the PR.
name: CI (on pull-request)
run-name: CI Triggered On Pull-Request
# Will run CI workflow on an opened or reopened PR for easy reference. For compilation, unit tests, code coverage etc.
on:
pull_request:
types: [opened, synchronize, reopened]
jobs:
Continuous-Integration:
uses: ./.github/workflows/ci.yml