Skip to content

feat: Introduced User-Defined outputs_path for Pipeline Execution #586

feat: Introduced User-Defined outputs_path for Pipeline Execution

feat: Introduced User-Defined outputs_path for Pipeline Execution #586

Workflow file for this run

name: Pull request validation
on:
pull_request:
types: ['opened', 'edited', 'reopened', 'synchronize']
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Set up Python
uses: actions/setup-python@v1
with:
python-version: '3.8'
- uses: actions/cache@v2
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/setup.py') }}
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
run: |
python3 -m pip install -U pip
pip3 install -e '.[fulldev]'
- name: Run linters
run: |
pip3 install black==22.6.0
black --check naas
flake8 naas
- name: Run test and linters
run: pytest tests/
- uses: amannn/action-semantic-pull-request@v3.1.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}