steps
4 rows where job = 27867
This data as json, CSV (advanced)
| id ▼ | seq | job | repo | uses | name | with | run | env | if |
|---|---|---|---|---|---|---|---|---|---|
| 138844 | 1 | spellcheck 27867 | datasette 107914493 | actions/checkout@v4 | |||||
| 138845 | 2 | spellcheck 27867 | datasette 107914493 | actions/setup-python@v4 | Set up Python | {
"python-version": "3.11",
"cache": "pip",
"cache-dependency-path": "**/setup.py"
} |
|||
| 138846 | 3 | spellcheck 27867 | datasette 107914493 | Install dependencies | pip install -e '.[docs]' | ||||
| 138847 | 4 | spellcheck 27867 | datasette 107914493 | Check spelling | codespell README.md --ignore-words docs/codespell-ignore-words.txt codespell docs/*.rst --ignore-words docs/codespell-ignore-words.txt codespell datasette -S datasette/static --ignore-words docs/codespell-ignore-words.txt |
Advanced export
JSON shape: default, array, newline-delimited, object
CREATE TABLE [steps] (
[id] INTEGER PRIMARY KEY,
[seq] INTEGER,
[job] INTEGER REFERENCES [jobs]([id]),
[repo] INTEGER REFERENCES [repos]([id]),
[uses] TEXT,
[name] TEXT,
[with] TEXT,
[run] TEXT
, [env] TEXT, [if] TEXT);
CREATE INDEX [idx_steps_repo]
ON [steps] ([repo]);
CREATE INDEX [idx_steps_job]
ON [steps] ([job]);