Skip to content

Deduplicate github actions #3996

Deduplicate github actions

Deduplicate github actions #3996

Workflow file for this run

name: Integration Tests
on:
push:
paths-ignore:
- 'docs/**'
branches:
- main
- autoupdate/strict
- autoupdate/moonray
- 'release-[0-9]+.[0-9]+'
- 'autoupdate/release-[0-9]+.[0-9]+-strict'
- 'autoupdate/sync/**'
pull_request:
paths-ignore:
- 'docs/**'
permissions:
contents: read
jobs:
build-snap:
name: Build k8s-snap
uses: ./.github/workflows/build-snap.yaml
id: build-snap

Check failure on line 25 in .github/workflows/integration.yaml

View workflow run for this annotation

GitHub Actions / Integration Tests

Invalid workflow file

The workflow is not valid. .github/workflows/integration.yaml (Line: 25, Col: 5): Unexpected value 'id' .github/workflows/integration.yaml (Line: 60, Col: 18): Unrecognized named-value: 'jobs'. Located at position 1 within expression: jobs.get-e2e-test-tags.outputs.test-tags
test-branches:
name: Test Branch Management
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.8'
- name: Install tox
run: pip install tox
- name: Run branch_management tests
run: |
tox -c tests/branch_management -e test
get-e2e-test-tags:
name: "Get e2e test tags"
uses: ./.github/workflows/get-e2e-test-tags.yaml
test-integration:
name: Test ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: ["ubuntu:20.04", "ubuntu:22.04", "ubuntu:24.04"]
needs: build
uses: ./.github/workflows/run-e2e-tests.yaml
with:
arch: amd64
os: ${{ matrix.os }}
test-tags: ${{ jobs.get-e2e-test-tags.outputs.test-tags}}
artifact: ${{ jobs.build-snap.outputs.snap-artifact}}
security-scan:
name: Security scan
needs: build
uses: ./.github/workflows/security-scan.yaml
with:
artifact: ${{ jobs.build-snap.outputs.snap-artifact}}