Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
27 lines
478 B
YAML
27 lines
478 B
YAML
name: CI
|
|
|
|
on:
|
|
push:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
|
|
container: qmkfm/qmk_cli
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Verify Vial UID is unique
|
|
run: python3 util/ci_vial_verify_uid.py
|
|
|
|
- name: Compile Vial keyboards
|
|
run: |
|
|
git config --global --add safe.directory $(pwd)
|
|
make git-submodule
|
|
python3 util/ci_compile_vial_keyboards.py
|