chore: ethereum oracles acceptance criteria updates #1331
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: "Quality checks" | |
"on": | |
pull_request: | |
branches: | |
- master | |
- cosmicelevator | |
- palazzomistero | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
yamllint: | |
name: "Yamllint" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out" | |
uses: actions/[email protected] | |
- name: "Run Yamllint" | |
uses: ibiqlik/[email protected] | |
with: | |
config_file: .github/workflows/config/yamllintconfig.yml | |
spellcheck: | |
name: "Spellcheck" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out" | |
uses: actions/[email protected] | |
- name: "Run PySpelling" | |
uses: rojopolis/[email protected] | |
with: | |
task_name: Markdown | |
markdownlint: | |
name: "Markdownlint" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out" | |
uses: actions/[email protected] | |
- name: "Run Markdownlint" | |
uses: nosborn/[email protected] | |
with: | |
files: . | |
config_file: .github/workflows/config/markdownlint.json | |
ignore_path: .github/workflows/config/markdownlintignore | |
checkcodes: | |
name: "Approbation" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out" | |
uses: actions/[email protected] | |
- name: "Run Check AC codes" | |
run: | | |
npx github:vegaprotocol/approbation check-codes --specs="{./non-protocol-specs/**/*.md,./protocol/**/*.md}" | |
- name: "Run Check file names" | |
run: | | |
npx github:vegaprotocol/approbation check-filenames --specs="{./non-protocol-specs/**/*.md,./protocol/**/*.md}" |