This repository has been archived on 2024-10-26. You can view files and clone it, but cannot push or open issues or pull requests.
fotochallenge/.gitea/workflows/lints.yml
Valentin Brandl b2bab79562
Some checks failed
/ Build App (push) Failing after 28s
/ Misc Linters (push) Successful in 35s
Run shellcheck and hadolint in CI
2024-08-16 14:45:13 +02:00

25 lines
482 B
YAML

on:
workflow_call:
push:
branches:
- main
pull_request:
schedule:
- cron: '0 0 * * *'
jobs:
shellcheck:
name: Misc Linters
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: https://gitea.com/actions/checkout@v4
- name: Lint shellscripts
uses: ludeeus/action-shellcheck@master
- name: Lint Dockerfile
uses: hadolint/hadolint-action@v3.1.0
with:
dockerfile: ./Containerfile