14 lines
191 B
YAML
14 lines
191 B
YAML
name: CI-pipeline
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- dev
|
|
|
|
jobs:
|
|
docker-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: lint dockerfile
|
|
run: echo hello
|