Skip to content

Configure release to PyPI and Homebrew #93

Configure release to PyPI and Homebrew

Configure release to PyPI and Homebrew #93

Workflow file for this run

name: 'build test'
on:
push:
branches: [ main ]
pull_request:
branches: [ '*' ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11, 17, 21 ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java }}
distribution: 'temurin'
cache: 'maven'
- name: Build and test
run: mvn clean verify -U