Skip to content

feat: expose CharmEvents at the top level #427

feat: expose CharmEvents at the top level

feat: expose CharmEvents at the top level #427

Workflow file for this run

name: Tests
on:
pull_request:
branches:
- main
- 7.0
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: python -m pip install tox
- name: Run linter
run: tox -vve lint
- name: Run static checks
run: tox -vve static
unit-test:
name: Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Set up python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install dependencies
run: python -m pip install tox
- name: Run unit tests
run: tox -vve unit