Skip to content

[resoto][chore] Move to AGPLv3 License #3313

[resoto][chore] Move to AGPLv3 License

[resoto][chore] Move to AGPLv3 License #3313

# Note: this workflow is automatically generated via the `create_pr` script in the same folder.
# Please do not change the file, but the script!
name: Check PR (Plugin example_collector)
on:
push:
tags:
- "*.*.*"
branches:
- main
pull_request:
paths:
- 'resotolib/**'
- 'plugins/example_collector/**'
- '.github/**'
- 'requirements-all.txt'
jobs:
example_collector:
name: "example_collector"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: '3.10'
architecture: 'x64'
- name: Restore dependency cache
uses: actions/cache@v3
with:
path: ~/.cache/pip
key: ${{runner.os}}-pip-${{hashFiles('./plugins/example_collector/pyproject.toml')}}
restore-keys: |
${{runner.os}}-pip-
- name: Install Dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade --editable resotolib/
pip install tox wheel flake8 build
- name: Run tests
working-directory: ./plugins/example_collector
run: tox
- name: Archive code coverage results
uses: actions/upload-artifact@v2
with:
name: plugin-example_collector-code-coverage-report
path: ./plugins/example_collector/htmlcov/
- name: Build a binary wheel and a source tarball
working-directory: ./plugins/example_collector
run: >-
python -m
build
--sdist
--wheel
--outdir dist/
- name: Publish distribution to PyPI
if: github.ref_type == 'tag'
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
password: ${{ secrets.PYPI_RESOTO_PLUGIN_EXAMPLE_COLLECTOR }}
packages_dir: ./plugins/example_collector/dist/