bug!: fix compatibility issue with wiremoxk 3.7.0 #1
Workflow file for this run
This file contains 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: Build and test | ||
on: | ||
push: | ||
branches: | ||
- '**' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
env: | ||
JDK_VERSION: 17 | ||
defaults: | ||
working-directory: ./compatibility_check | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: 17 | ||
distribution: 'temurin' | ||
- name: Run the Gradle package task | ||
uses: gradle/actions/setup-gradle@v3 | ||
with: | ||
arguments: build check |