-
Notifications
You must be signed in to change notification settings - Fork 780
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
unblock documentation-only PRs for aot-ci (#4938)
- Loading branch information
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Syntax: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | ||
# See also: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks | ||
|
||
# Description: This workflow exists to unblock documentation-only PRs. | ||
|
||
# IMPORTANT: This workflow MUST use the same 'name' and 'matrix' as the non -md workflow. | ||
|
||
name: Publish AOTCompatibility testApp | ||
|
||
on: | ||
pull_request: | ||
branches: [ 'main*' ] | ||
paths: | ||
- '**.md' | ||
|
||
jobs: | ||
aot-test: | ||
strategy: | ||
fail-fast: false # ensures the entire test matrix is run, even if one permutation fails | ||
matrix: | ||
os: [ ubuntu-latest ] | ||
version: [ net8.0 ] | ||
|
||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- run: 'echo "No build required"' |
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