Tests the Docker Compose infrastructure #96
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: Tests the Docker Compose infrastructure | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- sandcastle | |
- tooling | |
- .github/workflows/ghcr-publish.yml | |
- .github/workflows/analysis-infra-smoke-test.yml | |
- docker-compose.yaml | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: {} | |
jobs: | |
smoke-test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- name: sandcastle | |
- name: dragon | |
- name: coder | |
- name: static-analysers | |
- name: aflplusplus | |
- name: klee | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Test Docker Compose | |
uses: hoverkraft-tech/[email protected] | |
with: | |
compose-file: "./docker-compose.yaml" | |
services: | | |
${{ matrix.name }} |