Skip to content

Commit

Permalink
update .github/workflows/check.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
soleng-terraform[bot] authored Sep 20, 2024
1 parent a9e526e commit 99bd9d1
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
fail-fast: false
matrix:
runs-on: [[ubuntu-22.04]]
test-command: ['tox -e func -- --series focal -v', 'tox -e func -- --series jammy -v']
test-command: ['tox -e func -- -v --series focal', 'tox -e func -- -v --series jammy']
juju-channel: ["3.4/stable"]
steps:

Expand Down Expand Up @@ -121,6 +121,12 @@ jobs:

- name: Run tests
run: |
# These variables are for a consistent method to find the charm file(s) across all projects.
# It is designed to work both with charms that output one file per base,
# and charms that output a single file to run on all bases.
# Not all charms will use them, and for some charms the variables will resolve to the same file.
export CHARM_PATH_NOBLE="$(pwd)/$(ls | grep '.*24.04.*\.charm$')"
echo "$CHARM_PATH_NOBLE"
export CHARM_PATH_JAMMY="$(pwd)/$(ls | grep '.*22.04.*\.charm$')"
echo "$CHARM_PATH_JAMMY"
export CHARM_PATH_FOCAL="$(pwd)/$(ls | grep '.*20.04.*\.charm$')"
Expand Down

0 comments on commit 99bd9d1

Please sign in to comment.