chore: add vscode folder and python version file to gitignore (#3991) #3586
This file contains hidden or 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
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| paths: | |
| - 'gapic-generator-java-bom/**' | |
| - 'gapic-generator-java-pom-parent/**' | |
| - 'java-shared-dependencies/**' | |
| name: shared-dependencies version check | |
| jobs: | |
| upper-bound-check: | |
| name: Shared Dependencies BOM upper-bound check | |
| runs-on: ubuntu-latest | |
| if: github.repository_owner == 'googleapis' | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-java@v4 | |
| with: | |
| distribution: temurin | |
| java-version: 17 | |
| - run: java -version | |
| - name: Install maven modules | |
| run: | | |
| mvn install -B -ntp -DskipTests -Dclirr.skip -Dcheckstyle.skip | |
| - name: Check the BOM content satisfies the upper-bound-check test case | |
| run: mvn -B -V -ntp verify -Dcheckstyle.skip | |
| working-directory: java-shared-dependencies/upper-bound-check |