Skip to content

build(deps): bump bitcoin from 0.32.2 to 0.32.4 #264

build(deps): bump bitcoin from 0.32.2 to 0.32.4

build(deps): bump bitcoin from 0.32.2 to 0.32.4 #264

Workflow file for this run

name: build (nix-shell)
on:
workflow_dispatch:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Nix
uses: cachix/install-nix-action@v22
with:
nix_path: nixpkgs=channel:nixos-24.05
- name: Build
run: nix-shell --command "cargo build --verbose --all-features"
- name: Run tests
run: nix-shell --command "cargo test --verbose --all-features"
- name: Run cargo fmt
run: nix-shell --command "cargo fmt --all -- --check"