refactor(contracts-rfq): mark new methods as V2
#17137
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: Generic Linters (config files, etc) | |
on: [pull_request] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# TODO: add editor config linter | |
# https://github.com/editorconfig-checker/editorconfig-checker#continuous-integration | |
general-linters: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: mszostok/[email protected] | |
with: | |
checks: 'files,duppatterns,syntax' | |
experimental_checks: 'notowned,avoid-shadowing' | |
- name: Validate codecov | |
run: | | |
# https://docs.codecov.io/docs/codecov-yaml curl, if response code ok then exit 0 otherwise exit 1 | |
curl -s -o /dev/null -w "%{http_code}" --data-binary @.codecov.yml https://codecov.io/validate | grep --invert-match 200 && exit 1 || exit 0 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
with: | |
ignore_paths: ./contrib/scripts/txdecoder.sh | |
- name: Validate renovate | |
uses: rinchsan/[email protected] | |
with: | |
pattern: '.github/renovate.json' # Regular expression for filename to validate, default to *.json | |
- name: jsonc-syntax-check | |
uses: stevieb9/[email protected] | |
with: | |
pattern: .vscode/*.json' | |
- name: yaml-lint | |
uses: ibiqlik/action-yamllint@v3 | |
id: yaml-lint | |
with: | |
config_file: .yamllint.yml | |
- uses: actions/upload-artifact@v4 | |
if: steps.yaml-lint.outcome == 'success' | |
with: | |
name: yamllint-logfile | |
path: ${{ steps.yaml-lint.outputs.logfile }} | |
# TODO: reinstate lint | |
# - name: Download actionlint | |
# id: get_actionlint | |
# run: bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/main/scripts/download-actionlint.bash) | |
# shell: bash | |
# - name: Check workflow files | |
# run: | | |
# echo "::add-matcher::.github/actionlint-matcher.json" | |
# ${{ steps.get_actionlint.outputs.executable }} -color | |
# shell: bash |