|
5 | 5 | CLICOLOR: 1
|
6 | 6 |
|
7 | 7 | jobs:
|
8 |
| - spelling: |
9 |
| - name: Spell Check with Typos |
10 |
| - runs-on: ubuntu-latest |
11 |
| - steps: |
12 |
| - - name: Checkout Actions Repository |
13 |
| - uses: actions/checkout@v4 |
14 |
| - - name: Spell Check Repo |
15 |
| - |
16 |
| - |
17 |
| - clippy: |
18 |
| - name: clippy |
| 8 | + readme: |
| 9 | + name: Generate Readme |
19 | 10 | runs-on: ubuntu-latest
|
20 | 11 | steps:
|
21 | 12 | - uses: actions/checkout@v4
|
22 | 13 | - uses: dtolnay/rust-toolchain@stable
|
23 |
| - - run: cargo clippy -- -D warnings |
| 14 | + - run: cargo install cargo-readme |
| 15 | + - run: cargo-readme --help |
| 16 | + |
| 17 | +# jobs: |
| 18 | +# spelling: |
| 19 | +# name: Spell Check with Typos |
| 20 | +# runs-on: ubuntu-latest |
| 21 | +# steps: |
| 22 | +# - name: Checkout Actions Repository |
| 23 | +# uses: actions/checkout@v4 |
| 24 | +# - name: Spell Check Repo |
| 25 | +# uses: crate-ci/[email protected] |
| 26 | + |
| 27 | +# clippy: |
| 28 | +# name: clippy |
| 29 | +# runs-on: ubuntu-latest |
| 30 | +# steps: |
| 31 | +# - uses: actions/checkout@v4 |
| 32 | +# - uses: dtolnay/rust-toolchain@stable |
| 33 | +# - run: cargo clippy -- -D warnings |
24 | 34 |
|
25 |
| - format: |
26 |
| - name: format |
27 |
| - runs-on: ubuntu-latest |
28 |
| - steps: |
29 |
| - - uses: actions/checkout@v4 |
30 |
| - - uses: dtolnay/rust-toolchain@stable |
31 |
| - - run: cargo fmt -- --check |
| 35 | +# format: |
| 36 | +# name: format |
| 37 | +# runs-on: ubuntu-latest |
| 38 | +# steps: |
| 39 | +# - uses: actions/checkout@v4 |
| 40 | +# - uses: dtolnay/rust-toolchain@stable |
| 41 | +# - run: cargo fmt -- --check |
32 | 42 |
|
33 |
| - test_and_build: |
34 |
| - strategy: |
35 |
| - matrix: |
36 |
| - os: [ubuntu-latest, windows-latest] |
| 43 | +# test_and_build: |
| 44 | +# strategy: |
| 45 | +# fail-fast: false |
| 46 | +# matrix: |
| 47 | +# os: [ubuntu-latest, windows-latest] |
37 | 48 |
|
38 |
| - name: test_and_build |
39 |
| - runs-on: ${{ matrix.os }} |
40 |
| - steps: |
41 |
| - - uses: actions/checkout@v4 |
42 |
| - - uses: dtolnay/rust-toolchain@stable |
43 |
| - - run: cargo test --release |
44 |
| - - run: cargo b --release |
| 49 | +# name: test_and_build |
| 50 | +# runs-on: ${{ matrix.os }} |
| 51 | +# steps: |
| 52 | +# - uses: actions/checkout@v4 |
| 53 | +# - uses: dtolnay/rust-toolchain@stable |
| 54 | +# - run: cargo test --release |
| 55 | +# - run: cargo b --release |
0 commit comments