Skip to content

test restarter workflow #735

test restarter workflow

test restarter workflow #735

Workflow file for this run

name: "ci"
on:
push:
branches:
- "main"
pull_request:
branches:
- "main"
workflow_dispatch:
env:
SOURCE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
jobs:
spec:
strategy:
fail-fast: false
matrix:
ruby_version:
- "2.7"
- "3.2"
include:
- puppet_gem_version: "~> 7.0"
ruby_version: "2.7"
- puppet_gem_version: "~> 8.0"
ruby_version: "3.2"
name: "spec (ruby ${{ matrix.ruby_version }})"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_ci.yml@main"
secrets: inherit
with:
rake_task: 'spec:coverage'
ruby_version: ${{ matrix.ruby_version }}
puppet_gem_version: ${{ matrix.puppet_gem_version }}
acceptance:
needs: "spec"
strategy:
fail-fast: false
matrix:
os:
- "ubuntu-latest"
- "windows-2019"
ruby_version:
- "2.7"
- "3.2"
include:
- puppet_gem_version: "~> 7.0"
ruby_version: "2.7"
- puppet_gem_version: "~> 8.0"
ruby_version: "3.2"
name: "acceptance (ruby ${{ matrix.ruby_version }} | ${{ matrix.os }})"
uses: "puppetlabs/cat-github-actions/.github/workflows/gem_acceptance.yml@main"
secrets: inherit
with:
ruby_version: ${{ matrix.ruby_version }}
puppet_version: ${{ matrix.puppet_gem_version }}
rake_task: 'acceptance:local'
runs_on: ${{ matrix.os }}
rerun:
needs: "acceptance"
runs-on: ubuntu-latest
if: always() && needs.acceptance.result == 'failure'
name: "rerun"
uses: "puppetlabs/cat-github-actions/.github/workflows/workflow-restarter.yml@cat_1820"

Check failure on line 67 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 67, Col: 5): Unexpected value 'uses' .github/workflows/ci.yml (Line: 68, Col: 5): Unexpected value 'with'
with:
repo: ${{ github.repository }}
run_id: ${{ github.run_id }}
env:
SOURCE_GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}