fix: change bugbounty provider from h1 to bugcrowd #105
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: Java CI with Maven | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java-version: [ 11 ] | |
runs-on: [ ubuntu-latest, macos-latest, windows-latest ] | |
name: Build on ${{ matrix.runs-on }} with jdk ${{ matrix.java-version }} | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'temurin' | |
cache: maven | |
- name: Build with Maven | |
run: mvn -B package -DskipTests --file pom.xml | |
test: | |
strategy: | |
matrix: | |
java-version: [ 11 ] | |
runs-on: [ ubuntu-latest, macos-latest ] | |
name: Test on ${{ matrix.runs-on }} with jdk ${{ matrix.java-version }} | |
runs-on: ${{ matrix.runs-on }} | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up JDK ${{ matrix.java-version }} | |
uses: actions/setup-java@v2 | |
with: | |
java-version: ${{ matrix.java-version }} | |
distribution: 'temurin' | |
cache: maven | |
- name: test with Maven | |
run: mvn test -Dtest=\!FlinkBigQueryConnectorIntegrationTest,\!BigQuerySinkTest |