Upgrade Kafka client library to version 3.9.1 #14
Workflow file for this run
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
| name: "Pull Request Build & Test" | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-22.04 | |
| timeout-minutes: 5 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| fetch-depth: 0 | |
| - name: Set up JDK 8 | |
| uses: actions/setup-java@v3 | |
| with: | |
| distribution: corretto | |
| java-version: 8 | |
| - name: Restore local Maven repository from cache | |
| uses: actions/cache@v3 | |
| with: | |
| path: ~/.m2/repository | |
| key: ${{ runner.os }}-maven-${{ hashFiles( 'project.clj' ) }} | |
| restore-keys: | | |
| ${{ runner.os }}-maven- | |
| - name: Validate SNAPSHOT version | |
| env: | |
| SNAPSHOT_REGEX: ^[0-9]{1,2}[.][0-9]{1,2}[.][0-9]{1,3}-SNAPSHOT$ | |
| if: github.ref != 'refs/heads/master' | |
| run: | | |
| lein pom | |
| export VERSION=$(less pom.xml | grep "<version>" | head -1 | cut -d ">" -f2 | cut -d "<" -f1) | |
| echo "Version is:" $VERSION | |
| if [[ !("$VERSION" =~ $SNAPSHOT_REGEX) ]] | |
| then | |
| echo "Version isn't a SNAPSHOT version:" $VERSION | |
| exit 0 | |
| fi | |
| - name: Setup linter | |
| uses: DeLaGuardo/setup-clj-kondo@master | |
| with: | |
| version: '2023.09.07' | |
| - name: Lint | |
| run: clj-kondo --lint src test --config '{:lint-as {clojure.test.check.properties/for-all clojure.core/let}}' | |
| test: | |
| needs: build | |
| uses: ./.github/workflows/test.yml | |
| event_file: | |
| needs: test | |
| name: "Event File" | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Upload | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: Event File | |
| path: ${{ github.event_path }} |