Skip to content

feat: SDK code

feat: SDK code #4

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Quality Checks
concurrency:
group: Quality-Checks-${{ github.head_ref }}
cancel-in-progress: true
on:
pull_request:
jobs:
quality-checks:
runs-on: ubuntu-20.04
timeout-minutes: 10
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
- name: Pre-commit
uses: pre-commit/[email protected]
with:
extra_args: --from-ref ${{ github.event.pull_request.base.sha }} --to-ref ${{ github.event.pull_request.head.sha }}
# - name: CODEOWNERS validator
# uses: mszostok/[email protected]
# with:
# checks: files,duppatterns,syntax,owners
# experimental_checks: notowned
# github_access_token: ${{ secrets.GH_PAT_RO }}