Skip to content

Make text selectable #84

Make text selectable

Make text selectable #84

name: Run charm tests
on:
pull_request:
branches:
- main
push:
branches: ["main"]
tags: ["v*.*.*"]
jobs:
lint-report:
name: Lint and format report
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install tox
run: pip install tox
- name: Run tests using tox
run: tox -e lint
defaults:
run:
working-directory: ./frontend/charm
static-analysis:
name: Static analysis
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install tox
run: pip install tox
- name: Run tests using tox
run: tox -e static
defaults:
run:
working-directory: ./frontend/charm
unit-tests-with-coverage:
name: Unit tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install tox
run: pip install tox
- name: Run tests using tox
run: tox -e unit
defaults:
run:
working-directory: ./frontend/charm