We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4623930 commit a7739d0Copy full SHA for a7739d0
.github/workflows/rust.yml
@@ -10,6 +10,23 @@ env:
10
CARGO_TERM_COLOR: always
11
12
jobs:
13
+ readme:
14
+ runs-on: ubuntu-latest
15
+
16
+ defaults:
17
+ run:
18
+ working-directory: ./hyperloop
19
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+ - uses: actions-rs/install@v0.1
23
+ with:
24
+ crate: cargo-readme
25
+ version: latest
26
+ use-tool-cache: true
27
+ - name: Readme
28
+ run: cargo readme > ../README.md && git diff --exit-code
29
30
format:
31
runs-on: ubuntu-latest
32
0 commit comments