Refactor and simplify how private/public keys are tweaked for taproot spends #392
This file contains hidden or 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: Check | |
| on: | |
| pull_request: | |
| paths-ignore: | |
| - '**.md' | |
| - '**.adoc' | |
| - '**/.gitignore' | |
| - '.github/**' | |
| - '!.github/workflows/test.yml' | |
| push: | |
| branches: | |
| - '!master' | |
| - '!snapshot/*' | |
| paths-ignore: | |
| - '**.md' | |
| - '**.adoc' | |
| - '**/.gitignore' | |
| - '.github/**' | |
| - '!.github/workflows/test.yml' | |
| jobs: | |
| upload: | |
| name: Check | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest] | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| with: | |
| submodules: 'true' | |
| - name: Cached Konan | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.konan | |
| key: ${{ runner.os }}-konan-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
| restore-keys: ${{ runner.os }}-konan- | |
| - name: Cached Gradle | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.gradle | |
| key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle/wrapper/gradle-wrapper.properties') }} | |
| restore-keys: ${{ runner.os }}-gradle- | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: 21 | |
| distribution: 'adopt' | |
| - name: Check | |
| run: ./gradlew check |