feat: working Msgpack #16
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: Run Gradle Test | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
test-and-build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK 21 | |
uses: actions/setup-java@v4 | |
with: | |
java-version: "21" | |
distribution: "adopt" | |
- name: Install system-wide LibSodium | |
run: sudo apt-get install -y libsodium-dev | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
- name: Run Gradle Wrapper | |
run: chmod +x gradlew && gradle wrapper | |
- name: Initialize Repo and Jars | |
run: chmod +x initialize.sh && ./initialize.sh | |
- name: Run tests | |
run: ./gradlew test --info |