10 lines
141 B
Plaintext
10 lines
141 B
Plaintext
|
#!/usr/bin/env bash
|
||
|
set -xEeuo pipefail
|
||
|
|
||
|
cd "$(git rev-parse --show-toplevel)"
|
||
|
|
||
|
./ci/jobs/check
|
||
|
./ci/jobs/build
|
||
|
./ci/jobs/test
|
||
|
./ci/jobs/doc
|