Skip to content

Commit

Permalink
Implementing
Browse files Browse the repository at this point in the history
  • Loading branch information
egonbraun committed Dec 10, 2023
1 parent f3dc73d commit eb2c5de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/actions/lint/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,13 @@ runs:
using: "composite"
steps:
- name: install yamllint
shell: bash
run: |
pip install --user yamllint
which yamllint
- name: lint action.yml
shell: bash
run: |
ls -la
yamllint -c ./.yamllint.yml action.yml
1 change: 1 addition & 0 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,5 +61,6 @@ runs:
step: lint

- name: check if dependencies are installed
shell: bash
run: |
which hadolint
3 changes: 3 additions & 0 deletions .github/workflows/on_all_branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:
branches:
- '**'
- '!main'
pull_request:
branches-ignore:
- '**'

jobs:
lint:
Expand Down

0 comments on commit eb2c5de

Please sign in to comment.