[Type] Can rename py dataclass structs when calling sub functions #761
Workflow file for this run
This file contains hidden or 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: Linux | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - reopened | |
| - synchronize | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.head_ref || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| # Developing directly on ubuntu arm not supported currently. | |
| # Need to dev inside a manylinux container, when developing using linux arm. | |
| OS: ['ubuntu-22.04'] | |
| name: Linux ${{ matrix.OS }} Build | |
| runs-on: ${{ matrix.OS }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Python check | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - name: Linux prerequisites | |
| run: | | |
| bash .github/workflows/scripts_new/linux/1_prerequisites.sh | |
| - name: Linux build | |
| run: | | |
| bash .github/workflows/scripts_new/linux/2_build.sh | |
| - name: Linux install | |
| run: | | |
| bash .github/workflows/scripts_new/linux/3_install.sh | |
| - name: Linux test | |
| run: | | |
| bash .github/workflows/scripts_new/linux/4_test.sh |