forked from SiliconLabs/UnifySDK
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
UIC-3082: ci: github: Lint build action
It is compliant with yamlint Origin: SiliconLabs#50 Signed-off-by: Philippe Coval <[email protected]>
- Loading branch information
Showing
1 changed file
with
10 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,9 @@ | ||
name: Docker Image CI | ||
# YAML -*- mode: yaml; tab-width: 2; indent-tabs-mode: nil; coding: utf-8 -*- | ||
--- | ||
|
||
on: | ||
name: Build in docker | ||
|
||
on: # yamllint disable-line rule:truthy | ||
push: | ||
branches: [ '*' ] | ||
pull_request: | ||
|
@@ -10,8 +13,8 @@ jobs: | |
build: | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- name: Build Docker image from sources | ||
run: docker build . | ||
- uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
- name: Build Docker image from sources | ||
run: docker build . |