Skip to content

Add generated workflow validation coverage #2

Add generated workflow validation coverage

Add generated workflow validation coverage #2

Workflow file for this run

name: Act Validation
on:
push:
branches: [main]
pull_request:
jobs:
act-validation:
runs-on: ubuntu-latest
env:
ACT_VERSION: v0.2.80
steps:
- name: Check out repository
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4
with:
persist-credentials: false
- name: Set up Python
uses: actions/setup-python@a26af69be951a213d495a4c3e4e4022e16d87065 # v5
with:
python-version: '3.13'
- name: Install uv
uses: astral-sh/setup-uv@d4b2f3b6ecc6e67c4457f6d3e41ec42d3d0fcb86 # v5
- name: Set up Rust
uses: leynos/shared-actions/.github/actions/setup-rust@d400b079fb6a8fa92f7e7b6c57f3d1c92a4b2d54
with:
toolchain: stable
- name: Install template test tools
run: |
curl -fsSL "https://github.com/nektos/act/releases/download/${ACT_VERSION}/act_Linux_x86_64.tar.gz" |
sudo tar -xz -C /usr/local/bin act
npm install -g markdownlint-cli2
uv tool install mbake
- name: Check Docker runtime
run: docker info
- name: Run template tests with act validation
run: make test WITH_ACT=1