api/module-info,ByteArray: stop leaking HEX_FORMAT #325
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: Gradle Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macOS-latest] | |
distribution: ['temurin'] | |
fail-fast: false | |
name: ${{ matrix.os }} JDK 22 | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: ${{ matrix.distribution }} | |
# Setup JDK 21 & JDK 22 to make JDK 22 available to the Gradle Java Toolchains feature | |
# When installing multiple JDKs, the last JDK installed is the default and will be used to run Gradle itself | |
java-version: | | |
22 | |
21 | |
- name: Cache Gradle packages | |
uses: actions/cache@v4 | |
with: | |
path: ~/.gradle/caches | |
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }} | |
restore-keys: ${{ runner.os }}-gradle | |
- name: Install Nix | |
uses: cachix/install-nix-action@v25 | |
with: | |
github_access_token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install secp256k1 with Nix | |
run: nix profile install nixpkgs#secp256k1 | |
- name: Build with Gradle | |
run: ./gradlew build | |
- name: Run Java Examples | |
run: ./gradlew secp-examples-java:run secp-examples-java:runEcdsa | |
- name: Run Kotlin Examples | |
run: ./gradlew secp-examples-kotlin:run secp-examples-kotlin:runEcdsa |