Update dependency macaroonbakery to v1.3.4 #518
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run charm tests | |
on: | |
pull_request: | |
branches: | |
- main | |
paths: | |
- 'frontend/charm/**' | |
push: | |
branches: ["main"] | |
tags: ["v*.*.*"] | |
paths: | |
- 'frontend/charm/**' | |
jobs: | |
lint-report: | |
name: Lint and format report | |
runs-on: [self-hosted, linux, large, jammy, x64] | |
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: [self-hosted, linux, jammy, x64] | |
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: [self-hosted, linux, jammy, x64] | |
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 |