We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a3993a commit 6be0900Copy full SHA for 6be0900
.github/workflows/build.yml
@@ -1,6 +1,9 @@
1
-name: Docker Image CI
+# YAML -*- mode: yaml; tab-width: 2; indent-tabs-mode: nil; coding: utf-8 -*-
2
+---
3
-on:
4
+name: Build in docker
5
+
6
+on: # yamllint disable-line rule:truthy
7
push:
8
branches: [ '*' ]
9
pull_request:
@@ -10,8 +13,8 @@ jobs:
10
13
build:
11
14
runs-on: ubuntu-22.04
12
15
steps:
- - uses: actions/checkout@v4.1.1
- with:
- fetch-depth: 0
16
- - name: Build Docker image from sources
17
- run: docker build .
+ - uses: actions/checkout@v4.1.1
+ with:
18
+ fetch-depth: 0
19
+ - name: Build Docker image from sources
20
+ run: docker build .
0 commit comments