Ensure that index.html works in any directory in native mode #1019
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
# Create the CI Sanity Check entry even when we only have ignored files | |
name: Quarkus CI Sanity Check | |
on: | |
push: | |
paths: | |
- '.gitignore' | |
- '.dockerignore' | |
- '*.md' | |
- '*.adoc' | |
- '*.txt' | |
- 'adr/**' | |
- 'jakarta/**' | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.github/*.yml' | |
- '.github/*.java' | |
pull_request: | |
paths: | |
- '.gitignore' | |
- '.dockerignore' | |
- 'adr/**' | |
- '*.md' | |
- '*.adoc' | |
- '*.txt' | |
- 'jakarta/**' | |
- '.github/ISSUE_TEMPLATE/**' | |
- '.github/*.yml' | |
- '.github/*.java' | |
jobs: | |
ci-sanity-check: | |
name: "CI Sanity Check" | |
runs-on: ubuntu-latest | |
if: github.repository == 'quarkusio/quarkus' | |
steps: | |
- name: Build | |
run: sleep 1 |