Skip to content

Commit 2b912a3

Browse files
committed
Update README.md badge links
1 parent e022b7c commit 2b912a3

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

bitreq/.github/workflows/lint.yml renamed to .github/workflows/bitreq-lint.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,22 @@ name: lint
33
on:
44
push:
55
branches: [ master ]
6+
paths:
7+
- 'bitreq/**'
8+
- '.github/workflows/bitreq-lint.yml'
69
pull_request:
710
branches: [ master ]
11+
paths:
12+
- 'bitreq/**'
13+
- '.github/workflows/bitreq-lint.yml'
814

915
env:
1016
CARGO_TERM_COLOR: always
1117

18+
defaults:
19+
run:
20+
working-directory: bitreq
21+
1222
jobs:
1323
lint:
1424
runs-on: ubuntu-latest

bitreq/.github/workflows/msrv.yml renamed to .github/workflows/bitreq-msrv.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,24 @@ name: msrv
33
on:
44
push:
55
branches: [ master ]
6+
paths:
7+
- 'bitreq/**'
8+
- '.github/workflows/bitreq-msrv.yml'
69
pull_request:
710
branches: [ master ]
11+
paths:
12+
- 'bitreq/**'
13+
- '.github/workflows/bitreq-msrv.yml'
814
schedule:
915
- cron: "47 5 * * 6"
1016

1117
env:
1218
CARGO_TERM_COLOR: always
1319

20+
defaults:
21+
run:
22+
working-directory: bitreq
23+
1424
jobs:
1525
test:
1626
runs-on: ubuntu-latest

bitreq/.github/workflows/unit-tests.yml renamed to .github/workflows/bitreq-unit-tests.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,22 @@ name: unit-tests
33
on:
44
push:
55
branches: [ master ]
6+
paths:
7+
- 'bitreq/**'
8+
- '.github/workflows/bitreq-unit-tests.yml'
69
pull_request:
710
branches: [ master ]
11+
paths:
12+
- 'bitreq/**'
13+
- '.github/workflows/bitreq-unit-tests.yml'
814

915
env:
1016
CARGO_TERM_COLOR: always
1117

18+
defaults:
19+
run:
20+
working-directory: bitreq
21+
1222
jobs:
1323
test-linux:
1424
runs-on: ubuntu-latest

bitreq/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# bitreq - forked from minreq
22
[![Crates.io](https://img.shields.io/crates/d/bitreq.svg)](https://crates.io/crates/bitreq)
33
[![Documentation](https://docs.rs/bitreq/badge.svg)](https://docs.rs/bitreq)
4-
![Unit tests](https://github.com/tcharding/bitreq/actions/workflows/unit-tests.yml/badge.svg)
5-
![MSRV](https://github.com/tcharding/bitreq/actions/workflows/msrv.yml/badge.svg)
4+
![Unit tests](https://github.com/rust-bitcoin/corepc/actions/workflows/bitreq-unit-tests.yml/badge.svg)
5+
![MSRV](https://github.com/rust-bitcoin/corepc/actions/workflows/bitreq-msrv.yml/badge.svg)
66

77
This crate is a fork for the very nice
88
[minreq](https://github.com/neonmoe/minreq). I chose to fork and

0 commit comments

Comments
 (0)