Skip to content

Commit 1a108d7

Browse files
committed
Reformat with dprint
1 parent a7c47f9 commit 1a108d7

File tree

19 files changed

+620
-588
lines changed

19 files changed

+620
-588
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66
branches:
77
- master
88
schedule:
9-
- cron: '30 17 * * 5' # Every Friday at 17:30 UTC
9+
- cron: "30 17 * * 5" # Every Friday at 17:30 UTC
1010

1111
env:
1212
CARGO_TERM_COLOR: always
@@ -15,7 +15,6 @@ env:
1515
RUSTFLAGS: -D warnings
1616

1717
jobs:
18-
1918
# Here we check that we can run `cargo test` on modern versions of
2019
# Rust. Below we check that we can build the library on an old
2120
# version as well.

.github/workflows/cifuzz.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,21 @@ jobs:
44
Fuzzing:
55
runs-on: ubuntu-latest
66
steps:
7-
- name: Build Fuzzers
8-
id: build
9-
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
10-
with:
11-
oss-fuzz-project-name: 'textwrap'
12-
language: rust
13-
- name: Run Fuzzers
14-
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
15-
with:
16-
oss-fuzz-project-name: 'textwrap'
17-
fuzz-seconds: 300
18-
language: rust
19-
- name: Upload Crash
20-
uses: actions/upload-artifact@v4
21-
if: failure() && steps.build.outcome == 'success'
22-
with:
23-
name: artifacts
24-
path: ./out/artifacts
7+
- name: Build Fuzzers
8+
id: build
9+
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
10+
with:
11+
oss-fuzz-project-name: "textwrap"
12+
language: rust
13+
- name: Run Fuzzers
14+
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
15+
with:
16+
oss-fuzz-project-name: "textwrap"
17+
fuzz-seconds: 300
18+
language: rust
19+
- name: Upload Crash
20+
uses: actions/upload-artifact@v4
21+
if: failure() && steps.build.outcome == 'success'
22+
with:
23+
name: artifacts
24+
path: ./out/artifacts

.github/workflows/prepare-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Prepare Release PR
33
on:
44
push:
55
branches:
6-
- 'release-*'
6+
- "release-*"
77

88
jobs:
99
setup:
@@ -167,7 +167,7 @@ jobs:
167167

168168
- name: Build and test
169169
run: |
170-
cargo test
170+
cargo test
171171
172172
- name: Commit version bump
173173
run: |

0 commit comments

Comments
 (0)