List all **/*-info.java
files
#781
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: Continuous Integration | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ '*' ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Check out repository' | |
uses: actions/checkout@v4 | |
- name: 'List all -info.java files' | |
run: find | grep \\-info.java | |
- name: 'Set up Java' | |
uses: oracle-actions/setup-java@v1 | |
with: | |
website: jdk.java.net | |
release: 21 |