Update swatinem/rust-cache action to v2.7.6 #229
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: YAML | |
"on": | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
detect-changes: | |
name: Detect changes | |
runs-on: ubuntu-latest | |
outputs: | |
any_changed: ${{ steps.detect-changes.outputs.any_changed }} | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Get changed files | |
id: detect-changes | |
uses: tj-actions/changed-files@v45 | |
with: | |
files: | | |
.github/workflows/yaml.yml | |
**/*.yaml | |
**/*.yml | |
- name: Print changed files | |
run: | | |
for file in ${{ steps.detect-changes.outputs.all_changed_files }}; do | |
echo "$file" | |
done | |
lint: | |
name: Lint YAML files | |
runs-on: ubuntu-latest | |
needs: detect-changes | |
if: needs.detect-changes.outputs.any_changed == 'true' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Run yamllint | |
uses: actionshub/[email protected] | |
style: | |
name: Check YAML style | |
runs-on: ubuntu-latest | |
needs: detect-changes | |
if: needs.detect-changes.outputs.any_changed == 'true' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: prettier | |
uses: creyD/[email protected] | |
with: | |
dry: true | |
prettier_options: "--check **/*.{yml,yaml}" |