bitcoin-s/.github/workflows/Secp_Disabled_Tests.yml
2021-04-17 17:56:19 -05:00

31 lines
761 B
YAML

name: Secp256k1 Disabled Core Test
timeout-minutes: 60
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
on:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
env:
DISABLE_SECP256K1: "true"
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup Scala
uses: olafurpg/setup-scala@v10
- name: Cache
uses: actions/cache@v2
with:
path: |
~/.ivy2/cache
~/.sbt
~/.bitcoin-s/binaries
key: ${{ runner.os }}-cache
- name: run tests
run: sbt ++2.13.5 cryptoTestJVM/test coreTestJVM/test