Add italian language to custom card custom_card_eraycetinay_elapsed_time #2031
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: "Check Code Quality" | |
on: | |
pull_request: | |
branches: ["main", "release"] | |
jobs: | |
pre-commit: | |
name: "Check Code Quality" | |
runs-on: "ubuntu-latest" | |
steps: | |
- name: "⤵️ Check out code from GitHub" | |
uses: "actions/checkout@v3" | |
- name: "⚙️ Set up Python" | |
uses: "actions/setup-python@v4" | |
with: | |
python-version: 3.8 | |
- name: "⚙️ Set up Ruby" | |
uses: "ruby/setup-ruby@v1" | |
with: | |
ruby-version: 2.7 | |
bundler-cache: true | |
- name: "\U0001F680 Run pre-commit" | |
uses: "pre-commit/action@v3.0.0" |