chore: update data display for mark price, liquidation price and pnl #1305
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/checkout@v3 | |
- 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/checkout@v3 | |
- name: "Run PySpelling" | |
uses: rojopolis/[email protected] | |
with: | |
task_name: Markdown | |
markdownlint: | |
name: "Markdownlint" | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Check out" | |
uses: actions/checkout@v3 | |
- 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/checkout@v3 | |
- name: Log in to the GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: "Run Check AC codes" | |
run: | | |
docker run -v $PWD:/workspace ghcr.io/vegaprotocol/approbation:main check-codes --specs="{/workspace/non-protocol-specs/**/*.md,/workspace/protocol/**/*.md}" | |
- name: "Run Check file names" | |
run: | | |
docker run -v $PWD:/workspace ghcr.io/vegaprotocol/approbation:main check-filenames --specs="{/workspace/non-protocol-specs/**/*.md,/workspace/protocol/**/*.md}" |