2020-12-14 06:37:09 -06:00
|
|
|
name: Secp256k1 Disabled Core Test
|
|
|
|
env:
|
|
|
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: ubuntu-latest
|
2021-04-18 09:02:49 -05:00
|
|
|
timeout-minutes: 60
|
2020-12-29 08:07:15 -06:00
|
|
|
if: "! contains(github.event.pull_request.labels.*.name, 'documentation')"
|
2020-12-14 06:37:09 -06:00
|
|
|
env:
|
|
|
|
DISABLE_SECP256K1: "true"
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v2
|
2021-03-08 08:47:15 -06:00
|
|
|
with:
|
|
|
|
fetch-depth: 0
|
2020-12-14 06:37:09 -06:00
|
|
|
- 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
|
2021-03-03 16:52:03 -06:00
|
|
|
run: sbt ++2.13.5 cryptoTestJVM/test coreTestJVM/test
|