ci: run bootstrap in CI to validate
This commit is contained in:
parent
79782375fb
commit
07d5aeba69
1 changed files with 14 additions and 0 deletions
14
.github/workflows/ci.yaml
vendored
Normal file
14
.github/workflows/ci.yaml
vendored
Normal file
|
@ -0,0 +1,14 @@
|
|||
name: CI
|
||||
|
||||
on:
|
||||
pull_request:
|
||||
push:
|
||||
branches: [main]
|
||||
|
||||
jobs:
|
||||
validate:
|
||||
name: Validate bootstrap
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: . ./bootstrap.sh
|
Loading…
Reference in a new issue