feat: FIR-38125 ecosystem support for struct type for python sdk #1259
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: Pull request | |
on: | |
pull_request: | |
branches: [ main, 0.x ] | |
jobs: | |
check-title: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check title name convention | |
uses: jef/[email protected] | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
code-checkers: | |
uses: ./.github/workflows/code-check.yml | |
unit-tests: | |
uses: ./.github/workflows/unit-tests.yml | |
secrets: | |
GIST_PAT: ${{ secrets.GIST_PAT }} | |
security-scan: | |
needs: [unit-tests] | |
uses: ./.github/workflows/security-scan.yml | |
secrets: | |
FOSSA_TOKEN: ${{ secrets.FOSSA_TOKEN }} | |
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }} | |