Skip to content

Commit

Permalink
[aiven] chore: add ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jeqo committed Aug 21, 2024
1 parent d76a9e1 commit 221e864
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# The workflow to check pull requests into main.
# This checks the source in the state as if after the merge.
name: Branch push checks
on: push
jobs:
build:
strategy:
matrix:
java-version: [ 11, 17 ]
runs-on: [ ubuntu-latest ]
name: Build on ${{ matrix.runs-on }} with jdk ${{ matrix.java-version }}
runs-on: ${{ matrix.runs-on }}
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.java-version }}
distribution: temurin

- name: Build Docker image
run: make BRANCH=${GITHUB_REF_NAME} docker_image

0 comments on commit 221e864

Please sign in to comment.