Skip to content

Add justfile, fix CI #99

Add justfile, fix CI

Add justfile, fix CI #99

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Check
run: cargo check --all-features --verbose --target=x86_64-unknown-linux-gnu
- name: Run tests
run: cargo test -p bitcoin-waila --target=x86_64-unknown-linux-gnu --all-features --verbose