chore: add pre-commit hooks #6
Workflow file for this run
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
name: CI | |
# When pushing to the "main" branch, we: | |
# * build the rock image | |
# * publish the image | |
# * scan the image and upload the artifacts to the repository | |
on: | |
push: | |
branches: | |
- "main" | |
- "release-**" | |
tags: | |
- "v**" | |
paths: | |
- "rockcraft.yaml" | |
- ".github/workflows/**.yaml" | |
pull_request: | |
branches: | |
- "*" | |
workflow_dispatch: | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yaml | |
publish: | |
if: ${{ (github.ref == 'refs/heads/main') || (github.ref_type == 'tag') }} | |
needs: build | |
uses: ./.github/workflows/publish.yaml | |
scan: | |
if: ${{ (github.ref == 'refs/heads/main') || (github.ref_type == 'tag') }} | |
needs: publish | |
uses: ./.github/workflows/scan.yaml |