Skip to content

Merge pull request #16 from gboutry/feat/ensure-ha #42

Merge pull request #16 from gboutry/feat/ensure-ha

Merge pull request #16 from gboutry/feat/ensure-ha #42

Workflow file for this run

name: Release to Edge
on:
push:
branches:
- main
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
run: python3 -m pip install tox
- name: Run linters
run: tox -e pep8
unit-test:
name: Unit tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
run: python -m pip install tox
- name: Run tests
run: tox -e py3
release-to-charmhub:
name: Release to CharmHub
needs:
- lint
- unit-test
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Upload charm to Charmhub
uses: canonical/charming-actions/[email protected]
with:
credentials: "${{ secrets.CHARMHUB_TOKEN }}"
github-token: "${{ secrets.GITHUB_TOKEN }}"
channel: 3.12/edge