Add Convert and support conversion from string and boolean #80
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: Format & Lint | |
on: | |
pull_request: | |
jobs: | |
ci-lint: | |
runs-on: ubuntu-latest | |
strategy: | |
# if one fails continues running the others | |
fail-fast: false | |
steps: | |
- name: checkout-action | |
uses: actions/checkout@v4.2.2 | |
- name: yamllint | |
uses: ibiqlik/action-yamllint@v3 | |
- name: typos-action | |
uses: crate-ci/typos@v1.28.2 | |
- name: markdownlint-cli2-action | |
uses: DavidAnson/markdownlint-cli2-action@v18.0.0 | |
- name: editorconfig-checker-action | |
uses: editorconfig-checker/action-editorconfig-checker@v2 |