Skip to content

Add example groovy pipeline job #8

Add example groovy pipeline job

Add example groovy pipeline job #8

Workflow file for this run

name: Tests
on: [pull_request]
jobs:
cdk_tests:
runs-on: ubuntu-latest
defaults:
run:
working-directory: cdk
steps:
- uses: actions/checkout@v3
- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: '3.10'
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Run Pytest
run: |
python -m pytest -v