Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
uses: astral-sh/setup-uv@v7

- name: Install just
uses: extractions/setup-just@v3
run:
sudo snap install --classic just

- name: Run linters
run: just lint
Expand All @@ -52,7 +53,8 @@ jobs:
uses: astral-sh/setup-uv@v7

- name: Install just
uses: extractions/setup-just@v3
run:
sudo snap install --classic just

- name: Run unit tests
run: just unit
Expand Down Expand Up @@ -147,7 +149,8 @@ jobs:
uses: astral-sh/setup-uv@v7

- name: Install just
uses: extractions/setup-just@v3
run:
sudo snap install --classic just

- name: Setup Juju environment
uses: charmed-kubernetes/actions-operator@main
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
release:
needs: check
runs-on: ubuntu-24.04
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v6
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# This file is centrally managed as a template file in https://github.com/canonical/solutions-engineering-automation
# To update the file:
# - Edit it in the canonical/solutions-engineering-automation repository.
# - Open a PR with the changes.
# - When the PR merges, the soleng-terraform bot will open a PR to the target repositories with the changes.

# Python Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down
Loading