Remove site url #1299
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: Tests | |
defaults: | |
run: | |
shell: bash -leo pipefail {0} | |
on: | |
pull_request: | |
jobs: | |
unit-tests: | |
uses: canonical/operator-workflows/.github/workflows/test.yaml@main | |
secrets: inherit | |
with: | |
self-hosted-runner: true | |
self-hosted-runner-label: "edge" | |
plugins-test: | |
name: Specific test for the plugin | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install python3.12 | |
run: | | |
chmod +x tests/unit/pre_run_script.sh | |
./tests/unit/pre_run_script.sh | |
- name: Install tox | |
run: | | |
python -m pip install --upgrade pip | |
pip install virtualenv-pyenv | |
pip install tox | |
- run: tox -e plugins |