feat: add dockerfile for tutorial #1
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
# lint runs all linters in this repository | ||
# This workflow is triggered by ci_release.yml workflow | ||
name: lint | ||
on: | ||
workflow_call: | ||
jobs: | ||
yamllint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: rollkit/.github/.github/actions/[email protected] | ||
markdown-lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: rollkit/.github/.github/actions/[email protected] | ||
dockerfile-lint: | ||
uses: rollkit/.github/.github/workflows/reuseable_dockerfile_lint.yml | ||
with: | ||
failure-threshold: "error" |