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 Sep 28, 2023
1 parent 4204ed0 commit 3828f67
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# 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:
branches: [ '**' ]
jobs:
build:
strategy:
matrix:
java-version: [ 11, 17, 21 ]
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_HEAD_REF} docker_image

0 comments on commit 3828f67

Please sign in to comment.