fix(snap): build all packages from source #286
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: QA | |
on: | |
push: | |
branches: | |
- "main" | |
- "feature/*" | |
- "hotfix/*" | |
- "release/*" | |
- "renovate/*" | |
pull_request: | |
merge_group: | |
jobs: | |
lint: | |
uses: canonical/starflow/.github/workflows/lint-python.yaml@main | |
test: | |
uses: canonical/starflow/.github/workflows/test-python.yaml@main | |
with: | |
# Self-hosted Jammy and Noble runners, GH-hosted macos and Windows runners. | |
# Limiting to amd64 is a workaround for https://github.com/canonical/charmcraft/issues/2018 | |
fast-test-platforms: '[["jammy", "amd64"], ["noble", "amd64"], "macos-13", "macos-14-large", "windows-2019", "windows-2022"]' | |
# Slow tests run on noble to avoid an issue with old skopeo versions. | |
slow-test-platforms: '["noble", "macos-14-large"]' | |
# Switch to just noble when we fix #2018 | |
lowest-python-platform: self-hosted-linux-amd64-noble-large |