Skip to content

Bump aws-cdk-lib from 2.186.0 to 2.189.0 in /cicd #62

Bump aws-cdk-lib from 2.186.0 to 2.189.0 in /cicd

Bump aws-cdk-lib from 2.186.0 to 2.189.0 in /cicd #62

Workflow file for this run

# Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0
name: Continuous Integration
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.12
uses: actions/setup-python@v2
with:
python-version: 3.12
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Analysing the code with pylint
run: |
pylint artifacts libs tests *.py
- name: Testing the code with pytest
run: |
pytest --junit-xml=junit.xml --cov=artifacts --cov=.