Skip to content

Commit 1a70245

Browse files
committed
AI-review.
1 parent d09ef48 commit 1a70245

5 files changed

Lines changed: 182 additions & 84 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ You immediately see **WHAT** can be done in this repo and **HOW** it can be done
3939
Now, running build is as simple as:
4040
```
4141
> ./runo build
42-
Buld is running
42+
Build is running
4343
done
4444
```
4545

@@ -55,7 +55,7 @@ Following containers are available:
5555
* RockyLinux
5656
5757
> ./runo -c Debian build
58-
Buld for Debian is running
58+
Build for Debian is running
5959
done
6060
```
6161

docs/CONFIG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `runo` Config File Reference
22

3-
## Table of content
3+
## Table of contents
44
- [Introduction](#introduction)
55
- [Commands](#commands)
66
- - [Mandatory fields](#mandatory-fields)
@@ -32,7 +32,7 @@ Therefore, `runo` config contains 2 lists of objects:
3232

3333
## Commands
3434

35-
Configuration of every command consists of several simple fields.
35+
Configuration of every command consists of several simple fields.
3636
First, few examples, and then we will discuss details.
3737
- Simplest case: command config uses only mandatory fields:
3838
```toml
@@ -46,7 +46,7 @@ execute = "python3 -m tests.e2e.run"
4646
[[commands]]
4747
name = "test"
4848
description = "runs unit tests"
49-
before = ["echo This is just an exampe", "echo You should configure your tests here"]
49+
before = ["echo This is just an example", "echo You should configure your tests here"]
5050
execute = "pytest"
5151
after =["echo done > /dev/null"]
5252
examples = ["tests --cov -vv", "tests --last-failed"]
@@ -114,7 +114,7 @@ the main part. Example:
114114
Similar to `before`, but executed after the main part. Example:
115115
- `["rm -f /tmp/unneeded_files*"]`
116116

117-
Please note that these command are executed on host machine (not inside container).
117+
Please note that these commands are executed on host machine (not inside container).
118118

119119
#### `docker_container` (`string`)
120120

docs/QUICK_START.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on any development machine by default nowadays:
1616

1717
Go to root of your repository and do one of two things:
1818
<details>
19-
<summary>Just copy file directly to you repo (and make it executable)</summary>
19+
<summary>Just copy file directly to your repo (and make it executable)</summary>
2020

2121
```
2222
wget https://raw.githubusercontent.com/frwl404/runo/refs/heads/master/runo &&\
@@ -63,9 +63,9 @@ Following commands are available:
6363
* pre-commit - quick checks/fixes of code formatting (ruff/mypy) ['./runo pre-commit']
6464
* update-deps - updates dependencies, used in project, to the latest versions ['./runo update-deps']
6565
```
66-
At this moment most part of them are just a mocks, which prints something to console,
66+
At this moment most of them are just mocks, which print something to console,
6767
because at this moment `./runo` doesn't know what `test`/`build`/`...` means for your project.
68-
Only `./runo shell` do exactly what you expect from it (because it is quite universal thing, which means the same in any repo/project).
68+
Only `./runo shell` does exactly what you expect from it (because it is quite universal thing, which means the same in any repo/project).
6969

7070
## 3. Adopt generated config for your needs.
7171

0 commit comments

Comments
 (0)