Improvement/integration tests #4
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: Run On PR against main | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Python Setup | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12.4' | |
- name: Build schema | |
uses: ./.github/actions/build-schema | |
- name: Setup python, Lint Code and test | |
uses: ./.github/actions/setup_lint_and_test | |
integration-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Python Setup | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.12.4' | |
- name: Build schema | |
uses: ./.github/actions/build-schema | |
- name: Setup python, Integration Tests | |
uses: ./.github/actions/integration_tests |