this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

style: use descriptive names in CI

+11 -7
+6 -3
.github/workflows/nix.yml
··· 11 11 runs-on: ubuntu-latest 12 12 13 13 steps: 14 - - uses: actions/checkout@v3 15 - - uses: DeterminateSystems/nix-installer-action@main 16 - - uses: DeterminateSystems/magic-nix-cache-action@main 14 + - name: Checkout 15 + uses: actions/checkout@v3 16 + - name: Install Nix 17 + uses: DeterminateSystems/nix-installer-action@main 18 + - name: Nix Cache 19 + uses: DeterminateSystems/magic-nix-cache-action@main 17 20 18 21 - name: Check 19 22 run: nix flake check
+5 -4
.github/workflows/rust.yml
··· 15 15 runs-on: ubuntu-latest 16 16 17 17 steps: 18 - - uses: actions/checkout@v3 18 + - name: Checkout 19 + uses: actions/checkout@v3 19 20 20 21 - name: Install Rust 21 22 uses: dtolnay/rust-toolchain@stable 22 23 with: 23 24 components: clippy, rustfmt 24 25 25 - - name: Setup Cache 26 + - name: Rust Cache 26 27 uses: Swatinem/rust-cache@v2 27 28 28 29 - name: Build 29 30 run: cargo build 30 31 31 - - name: Run tests 32 + - name: Test 32 33 run: cargo test 33 34 34 35 - name: Format 35 36 run: cargo fmt -- --check 36 37 37 - - name: Run clippy 38 + - name: Clippy 38 39 run: cargo clippy -- -D warnings