ADCM-6122: Implement ADCM object #76
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: Validate Pull Request Changes | |
# most important for us is "synchronize" event for pull request, which is included by default | |
on: pull_request | |
jobs: | |
lint: | |
name: Lint Python code | |
uses: ./.github/workflows/step_lint.yaml | |
unit_tests: | |
name: Run unit tests | |
uses: ./.github/workflows/step_test_from_dir.yaml | |
with: | |
target: tests/unit | |
description: Unit | |
integration_tests: | |
name: Run integration tests | |
uses: ./.github/workflows/step_test_from_dir.yaml | |
with: | |
target: tests/integration | |
description: Integration |