This repository has been archived by the owner on Jul 2, 2024. It is now read-only.
Use correct master/main branch per repo (#238) #266
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: ci | |
on: | |
push: | |
branches: | |
- main | |
tags-ignore: | |
- "*" | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: { } | |
concurrency: | |
group: ci-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
GRADLE_SWITCHES: --console=plain --info --warning-mode=all | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: build | |
timeout-minutes: 20 | |
uses: gradle/actions/setup-gradle@v3 | |
with: | |
arguments: ${{ env.GRADLE_SWITCHES }} build | |
- name: Upload build reports | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build-reports | |
path: build/reports/ | |
- name: Validate repos.csv | |
run: ./validate-repos.csv.sh |