generated from canonical/starbase
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: swap out old test workflows for starflow
- Loading branch information
Showing
4 changed files
with
24 additions
and
155 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
8 changes: 5 additions & 3 deletions
8
.github/workflows/security-scan.yaml → .github/workflows/policy.yaml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,17 @@ | ||
name: Security scan | ||
name: Check policy | ||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- main | ||
- hotfix/* | ||
- work/secscan # For development | ||
- work/check-policy # For development | ||
|
||
jobs: | ||
policy: | ||
uses: canonical/starflow/.github/workflows/policy.yaml@main | ||
python-scans: | ||
name: Scan Python project | ||
name: Security scan | ||
uses: canonical/starflow/.github/workflows/scan-python.yaml@main | ||
with: | ||
packages: python-apt-dev |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
name: QA | ||
on: | ||
push: | ||
branches: | ||
- "main" | ||
- "feature/*" | ||
- "hotfix/*" | ||
- "release/*" | ||
- "renovate/*" | ||
pull_request: | ||
|
||
jobs: | ||
lint: | ||
uses: canonical/starflow/.github/workflows/lint-python.yaml@main | ||
test: | ||
uses: canonical/starflow/.github/workflows/test-python.yaml@main | ||
with: | ||
fast-test-platforms: '[["jammy", "amd64"], ["noble", "arm64"], "macos-14-large"]' | ||
slow-test-platforms: '["jammy", "macos-14-large"]' |
This file was deleted.
Oops, something went wrong.