Added s3 storage support #36
Workflow file for this run
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 tests with Tox | ||
on: [pull_request] | ||
jobs: | ||
call-inclusive-naming-check: | ||
name: Inclusive naming | ||
uses: canonical-web-and-design/Inclusive-naming/.github/workflows/woke.yaml@main | ||
Check failure on line 8 in .github/workflows/main.yaml GitHub Actions / .github/workflows/main.yamlInvalid workflow file
|
||
with: | ||
fail-on-error: "true" | ||
lint-unit: | ||
name: Lint Unit | ||
uses: charmed-kubernetes/workflows/.github/workflows/lint-unit.yaml@main | ||
with: | ||
python: "['3.8', '3.9', '3.10', '3.11']" | ||
needs: | ||
- call-inclusive-naming-check | ||
integration-tests: | ||
name: Integration test with LXD | ||
runs-on: ubuntu-latest | ||
needs: | ||
- lint-unit | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v3 | ||
- name: Setup Python | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: "3.10" | ||
- name: Setup operator environment | ||
uses: charmed-kubernetes/actions-operator@main | ||
with: | ||
provider: lxd | ||
juju-channel: 3/stable | ||
- name: Run integration test | ||
run: tox -e integration |