steps
10 rows where job = 27870
This data as json, CSV (advanced)
| id ▼ | seq | job | repo | uses | name | with | run | env | if |
|---|---|---|---|---|---|---|---|---|---|
| 138859 | 1 | test 27870 | datasette 107914493 | actions/checkout@v3 | |||||
| 138860 | 2 | test 27870 | datasette 107914493 | actions/setup-python@v4 | Set up Python ${{ matrix.python-version }} | {
"python-version": "${{ matrix.python-version }}",
"allow-prereleases": true
} |
|||
| 138861 | 3 | test 27870 | datasette 107914493 | actions/cache@v3 | Configure pip caching | {
"path": "~/.cache/pip",
"key": "${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}",
"restore-keys": "${{ runner.os }}-pip-\n"
} |
|||
| 138862 | 4 | test 27870 | datasette 107914493 | Build extension for --load-extension test | (cd tests && gcc ext.c -fPIC -shared -o ext.so) | ||||
| 138863 | 5 | test 27870 | datasette 107914493 | Install dependencies | pip install -e '.[test]' pip freeze | ||||
| 138864 | 6 | test 27870 | datasette 107914493 | Run tests | pytest -n auto -m "not serial" pytest -m "serial" # And the test that exceeds a localhost HTTPS server tests/test_datasette_https_server.sh | ||||
| 138865 | 7 | test 27870 | datasette 107914493 | Install docs dependencies on Python 3.9+ | pip install -e '.[docs]' | matrix.python-version != '3.8' | |||
| 138866 | 8 | test 27870 | datasette 107914493 | Check if cog needs to be run | cog --check docs/*.rst | matrix.python-version != '3.8' | |||
| 138867 | 9 | test 27870 | datasette 107914493 | Check if blacken-docs needs to be run | # This fails on syntax errors, or a diff was applied blacken-docs -l 60 docs/*.rst | matrix.python-version != '3.8' | |||
| 138868 | 10 | test 27870 | datasette 107914493 | Test DATASETTE_LOAD_PLUGINS | pip install datasette-init datasette-json-html tests/test-datasette-load-plugins.sh |
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]);