PR from branch refs/pull/237/merge #175
Workflow file for this run
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
# 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: PR from branch ${{ github.ref }} | |
# 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] | |
paths: | |
- '**.kt' | |
- '**/*.xml' # Matches all XML files in any directory | |
- '**/*.png' # Matches all PNG files in any directory | |
- '**/*.md' # Matches all MD files in any directory | |
# Add any other file patterns you need to include | |
jobs: | |
Continuous-Integration: | |
uses: ./.github/workflows/ci.yml |