fix(ci): move hive setup to its own job so we only do it once #204
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: Github Actions | |
on: | |
pull_request: | |
branches: ["**"] | |
paths: | |
".github/**.yaml" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout sources | |
uses: actions/checkout@v4 | |
- name: actionlint | |
uses: raven-actions/actionlint@v2 | |
with: | |
flags: "-ignore SC2086 -ignore SC2006" |