Skip to content

Commit e05a327

Browse files
authored
Merge pull request #2 from sir-gon/develop
Develop
2 parents 974f82a + 653d822 commit e05a327

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

.github/workflows/markdown-lint.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,20 +16,14 @@ jobs:
1616
name: Markdown Lint
1717
runs-on: ubuntu-24.04
1818

19-
strategy:
20-
matrix:
21-
node-version: [22.x]
22-
# See supported Node.js release schedule
23-
# at https://nodejs.org/en/about/releases/
24-
2519
steps:
2620
- name: Checkout repository
2721
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5
2822

29-
- name: Set up Node.js ${{ matrix.node-version }}
23+
- name: Set up Node.js
3024
uses: actions/setup-node@v5
3125
with:
32-
node-version: ${{ matrix.node-version }}
26+
node-version: 22.x
3327

3428
- name: Install dependencies
3529
run: npm install -g markdownlint-cli

.github/workflows/rust-coverage.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Coverage
2+
name: Rust Coverage
33

44
on: # yamllint disable-line rule:truthy
55
push:
@@ -11,6 +11,7 @@ on: # yamllint disable-line rule:truthy
1111

1212
jobs:
1313
coverage:
14+
name: Rust Coverage
1415
runs-on: ubuntu-latest
1516
env:
1617
CARGO_TERM_COLOR: always

.github/workflows/rust.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
name: Rust
2+
name: Rust Test
33

44
on: # yamllint disable-line rule:truthy
55
push:

Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,12 @@ lint/yaml:
6666
lint: lint/markdown lint/yaml test/styling test/static
6767

6868
test/static: dependencies
69+
$(PACKAGE_MANAGER) clippy --all-features -- -D warnings
6970

7071
test/styling: dependencies
7172

7273
format:
74+
$(PACKAGE_MANAGER) fix --allow-dirty --allow-staged --all-features
7375

7476
test: env dependencies
7577
$(PACKAGE_MANAGER) test
@@ -78,6 +80,8 @@ coverage: test
7880
$(PACKAGE_MANAGER) llvm-cov --all-features --workspace --lcov --output-path lcov.info
7981

8082
coverage/html:
83+
$(PACKAGE_MANAGER) llvm-cov --html
84+
open ./target/llvm-cov/html/index.html
8185

8286
outdated:
8387

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
# Algorithm Exercises (Rust 🦀)
22

33
[![Rust on Linux CI Test](https://github.com/sir-gon/algorithm-exercises-rust/actions/workflows/rust.yml/badge.svg)](https://github.com/sir-gon/algorithm-exercises-rust/actions/workflows/rust.yml)
4-
54
[![Markdown Lint](https://github.com/sir-gon/algorithm-exercises-rust/actions/workflows/markdown-lint.yml/badge.svg)](https://github.com/sir-gon/algorithm-exercises-rust/actions/workflows/markdown-lint.yml)
65
[![YAML lint](https://github.com/sir-gon/algorithm-exercises-rust/actions/workflows/yamllint.yml/badge.svg)](https://github.com/sir-gon/algorithm-exercises-rust/actions/workflows/yamllint.yml)
76

87
![GitHub](https://img.shields.io/github/license/sir-gon/algorithm-exercises-rust)
98
![GitHub language count](https://img.shields.io/github/languages/count/sir-gon/algorithm-exercises-rust)
109
![GitHub top language](https://img.shields.io/github/languages/top/sir-gon/algorithm-exercises-rust)
11-
1210
[![codecov](https://codecov.io/gh/sir-gon/algorithm-exercises-rust/branch/main/graph/badge.svg?token=YZ41BE67E4)](https://codecov.io/gh/sir-gon/algorithm-exercises-rust)
1311

1412
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=sir-gon_algorithm-exercises-rust&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=sir-gon_algorithm-exercises-rust)

0 commit comments

Comments
 (0)