diff --git a/.github/workflows/integration_tests.yaml b/.github/workflows/integration_tests.yaml index 1bb03d1b1..0d6226ad3 100644 --- a/.github/workflows/integration_tests.yaml +++ b/.github/workflows/integration_tests.yaml @@ -1,27 +1,27 @@ -name: integration-tests +name: Integration tests on: pull_request: jobs: - integration-test-juju3: + integration-tests-juju2: name: Integration test uses: canonical/operator-workflows/.github/workflows/integration_test.yaml@main secrets: inherit with: - juju-channel: 3.1/stable + juju-channel: 2.9/stable pre-run-script: scripts/pre-integration-test.sh provider: lxd - test-tox-env: integration-juju3.1 + test-tox-env: integration-juju2.9 modules: '["test_charm_fork_repo", "test_charm_no_runner", "test_charm_scheduled_events", "test_charm_one_runner", "test_charm_metrics"]' - integration-test-juju2: + integration-tests: name: Integration test - needs: integration-test-juju3 + needs: integration-test-juju2 uses: canonical/operator-workflows/.github/workflows/integration_test.yaml@main secrets: inherit with: - juju-channel: 2.9/stable + juju-channel: 3.1/stable pre-run-script: scripts/pre-integration-test.sh provider: lxd - test-tox-env: integration-juju2.9 + test-tox-env: integration-juju3.1 modules: '["test_charm_fork_repo", "test_charm_no_runner", "test_charm_scheduled_events", "test_charm_one_runner", "test_charm_metrics"]'