Skip to content

Definitions Update remediations #181

Definitions Update remediations

Definitions Update remediations #181

# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test and release to PyPi
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
release:
types:
- created
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ./
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Test
run: |
python3 -m unittest
python3 scripts/validate_my_definition.py -d alsdkdefs/apis/assets_query/
deploy:
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools_scm[toml]>=3.4 setuptools>=42 wheel twine>=3.3.0
- name: Build and publish
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
run: |
python setup.py sdist bdist_wheel
twine upload --skip-existing dist/*