change secp256k1-haskell to libsecp256k1 #60
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: HLint | |
concurrency: | |
group: ${{ github.ref }}-hlint | |
cancel-in-progress: true | |
on: | |
pull_request: | |
branches: | |
- master | |
paths: | |
- stack.yaml | |
- .hlint.yaml | |
- "bitcoin/**/*.hs" | |
- "bitcoin-test/**/*.hs" | |
- "bitcoin-bench/**/*.hs" | |
- ".github/workflows/hlint.yaml" | |
types: | |
- synchronize | |
- opened | |
- reopened | |
- ready_for_review | |
push: | |
branches: | |
- master | |
paths: | |
- stack.yaml | |
- .hlint.yaml | |
- "bitcoin/**/*.hs" | |
- "bitcoin-test/**/*.hs" | |
- ".github/workflows/hlint.yaml" | |
workflow_dispatch: | |
inputs: {} | |
jobs: | |
hlint: | |
if: github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b | |
- name: "Set up HLint" | |
uses: haskell-actions/hlint-setup@0b0024319753ba0c8b2fa21b7018ed252aed8181 | |
with: | |
version: "3.5" | |
- name: "Run HLint" | |
uses: haskell-actions/hlint-run@96199a3357287063c67606b26d533f1acb4b6c4e | |
with: | |
# For some reason this has to be a string containing JSON rather than a YAML sequence | |
path: '[ "bitcoin/", "bitcoin-test/", "bitcoin-bench/" ]' | |
fail-on: warning |