mirror of
https://github.com/bitcoin-s/bitcoin-s.git
synced 2025-02-24 15:02:17 +01:00
28 lines
617 B
YAML
28 lines
617 B
YAML
|
name: Secp256k1 Disabled Core Test
|
||
|
env:
|
||
|
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
|
||
|
jobs:
|
||
|
test:
|
||
|
runs-on: ubuntu-latest
|
||
|
env:
|
||
|
DISABLE_SECP256K1: "true"
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- 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.4 cryptoTest/test coreTest/test
|