Skip to content

ci: switch to comprehensive workflows via the flow-execute action #10

ci: switch to comprehensive workflows via the flow-execute action

ci: switch to comprehensive workflows via the flow-execute action #10

Workflow file for this run

name: Container
on:
push:
branches:
- main
pull_request:
permissions:
contents: read # for actions/checkout to fetch code
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test-container:
runs-on: ubuntu-latest
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Test container build
uses: jahvon/flow-action@v0.1.0beta2
with:
executable: 'build container'
timeout: '20m'
continue-on-error: true
flow-version: 'v1.0.0-beta1'
id: container
- name: Check container build
run: |
echo "Container build completed with exit code: ${{ steps.container.outputs.exit-code }}"
if [ "${{ steps.container.outputs.exit-code }}" = "0" ]; then
echo "✅ Container build successful"
else
echo "⚠️ Container build failed (expected in CI without Docker setup)"
fi