8000 Refactor schema tests to assert entire structure · lukehau/sdk-python@f2456d0 · GitHub
[go: up one dir, main page]

Skip to content

Refactor schema tests to assert entire structure #3

Workflow file

Refactor schema tests to assert entire structure

Refactor schema tests to assert entire structure #3

Workflow file for this run

name: Pull Request and Push Action
on:
pull_request: # Safer than pull_request_target for untrusted code
branches: [ main ]
types: [opened, synchronize, reopened, ready_for_review, review_requested, review_request_removed]
push:
branches: [ main ] # Also run on direct pushes to main
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
call-test-lint:
uses: ./.github/workflows/test-lint.yml
permissions:
contents: read
with:
ref: ${{ github.event.pull_request.head.sha }}
0