Skip to content

Add in-source to in-wiki link transformer #2

Add in-source to in-wiki link transformer

Add in-source to in-wiki link transformer #2

Workflow file for this run

# Copyright 2023 Jacob Hummer
# SPDX-License-Identifier: Apache-2.0
name: Test action
on:
push:
branches: [master]
paths-ignore:
- .gitignore
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test.yml"
pull_request:
paths-ignore:
- .gitignore
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test.yml"
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
test-action-clone:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: strategy=clone
uses: ./
with:
strategy: clone
dry-run: true
test-action-init:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: strategy=init
uses: ./
with:
strategy: init
dry-run: true
test-action-master:
if: github.ref_name == 'master'
needs: test

Check failure on line 52 in .github/workflows/test-action.yml

View workflow run for this annotation

GitHub Actions / Test action

Invalid workflow file

The workflow is not valid. .github/workflows/test-action.yml (Line: 52, Col: 12): Job 'test-action-master' depends on unknown job 'test'.
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./