chore: bump actions/attest-build-provenance from 2.2.0 to 2.2.2 (#1601) #3628
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: Observability Charm Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_call: | |
workflow_dispatch: | |
jobs: | |
o11y-charm-tests: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- charm-repo: canonical/alertmanager-k8s-operator | |
commit: 003eb9c25f35f616a9af1a5c7e15b306a36e804e # rev155 2025-02-26T12:12:03Z | |
- charm-repo: canonical/prometheus-k8s-operator | |
commit: 043ae123939ed02e32a3ca7223e194ea0394259e # 2025-02-25T00:03:54Z | |
- charm-repo: canonical/grafana-k8s-operator | |
commit: 13fa90ed7d5304ce26eaba17f0dff3c2831c07a8 # 2025-02-10T20:16:10Z | |
steps: | |
- name: Checkout the ${{ matrix.charm-repo }} repository | |
uses: actions/checkout@v4 | |
with: | |
repository: ${{ matrix.charm-repo }} | |
ref: ${{ matrix.commit }} | |
- name: Install dependencies | |
run: pip install tox~=4.2 uv~=0.6 | |
- name: Update 'ops' dependency in test charm to latest | |
run: | | |
if [ -e "requirements.txt" ]; then | |
sed -i -e "/^ops[ ><=]/d" -e "/canonical\/operator/d" -e "/#egg=ops/d" requirements.txt | |
echo -e "\ngit+$GITHUB_SERVER_URL/$GITHUB_REPOSITORY@$GITHUB_SHA#egg=ops" >> requirements.txt | |
elif [ -e "uv.lock" ]; then | |
uv add git+$GITHUB_SERVER_URL/$GITHUB_REPOSITORY@$GITHUB_SHA --raw-sources | |
else | |
echo "Error: no requirements.txt or uv.lock file found" | |
exit 1 | |
fi | |
- name: Run the charm's unit tests | |
if: ${{ !(matrix.disabled) }} | |
run: tox -vve unit | |
- name: Check if 'scenario' tox environment exists | |
id: check-tox-env-scenario | |
run: | | |
if tox --listenvs | grep -q "^scenario$"; then | |
echo "exists=true" >> "$GITHUB_OUTPUT" | |
else | |
echo "exists=false" >> "$GITHUB_OUTPUT" | |
fi | |
# alertmanager-k8s has old Scenario tests, so we can't do this until those | |
# are updated. | |
# - name: Run the charm's scenario unit tests | |
# if: ${{ steps.check-tox-env-scenario.outputs.exists == 'true' && !(matrix.disabled) }} | |
# run: tox -vve scenario | |
- name: Check if 'static' tox environment exists | |
id: check-tox-env-static | |
run: | | |
if tox --listenvs | grep -q "^static$"; then | |
echo "exists=true" >> "$GITHUB_OUTPUT" | |
else | |
echo "exists=false" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Run the charm's static analysis checks | |
if: ${{ steps.check-tox-env-static.outputs.exists == 'true' && !(matrix.disabled) | |
}} | |
run: tox -vve static | |
- name: Check if 'static-charm' tox environment exists | |
id: check-tox-env-static-charm | |
run: | | |
if tox --listenvs | grep -q "^static-charm$"; then | |
echo "exists=true" >> "$GITHUB_OUTPUT" | |
else | |
echo "exists=false" >> "$GITHUB_OUTPUT" | |
fi | |
- name: Run the charm's static (charm) analysis checks | |
if: ${{ steps.check-tox-env-static-charm.outputs.exists == 'true' && !(matrix.disabled) | |
}} | |
run: tox -vve static-charm |