Bump io.github.classgraph:classgraph from 4.8.163 to 4.8.164 #6918
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
name: Fetcher Tests | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/main/java/org/jabref/logic/importer/fetcher/**' | |
- 'src/test/java/org/jabref/logic/importer/fetcher/**' | |
- 'src/main/java/org/jabref/logic/crawler/**' | |
- 'src/test/java/org/jabref/logic/crawler/**' | |
- '.github/workflows/tests-fetchers.yml' | |
- 'build.gradle' | |
pull_request: | |
paths: | |
- 'src/main/java/org/jabref/logic/importer/fetcher/**' | |
- 'src/test/java/org/jabref/logic/importer/fetcher/**' | |
- '.github/workflows/tests-fetchers.yml' | |
- 'build.gradle' | |
schedule: | |
# run on each Wednesday | |
- cron: '2 3 * * 3' | |
workflow_dispatch: | |
env: | |
SpringerNatureAPIKey: ${{ secrets.SPRINGERNATUREAPIKEY_FOR_TESTS }} | |
AstrophysicsDataSystemAPIKey: ${{ secrets.AstrophysicsDataSystemAPIKey_FOR_TESTS }} | |
IEEEAPIKey: ${{ secrets.IEEEAPIKey_FOR_TESTS }} | |
BiodiversityHeritageApiKey: ${{ secrets.BiodiversityHeritageApiKey_FOR_TESTS}} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
fetchertests: | |
name: Fetcher tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
show-progress: 'false' | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 21.0.1 | |
distribution: 'liberica' | |
cache: 'gradle' | |
- name: Run fetcher tests | |
run: ./gradlew fetcherTest | |
env: | |
CI: "true" |