Skip to content

updated description #639

updated description

updated description #639

Workflow file for this run

name: Setup & build calm-dsl
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: black
uses: psf/black@stable # Exclude list is not honored - https://github.com/psf/black/issues/1584
with:
version: "22.6.0"
options: "--check --extend-exclude tests/escript/scripts/"
- name: Setup env
run: |
python -m pip install --upgrade pip
pip install virtualenv
- name: Install requirements
run: |
make dev
- name: Build python package
run: |
make dist
- name: Build docker image
run: |
make docker
- name: Execute container
uses: addnab/docker-run-action@v3
with:
image: ntnx/calm-dsl
run: calm
- name: Publish docker image
if: ${{ github.event_name == 'push' && github.repository == 'nutanix/calm-dsl' && matrix.python-version == '3.9'}}
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker push ntnx/calm-dsl