Skip to content

Merge pull request #73 from Andrew-Chen-Wang/revert-72-revert-68-in-s… #42

Merge pull request #73 from Andrew-Chen-Wang/revert-72-revert-68-in-s…

Merge pull request #73 from Andrew-Chen-Wang/revert-72-revert-68-in-s… #42

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
- .gitattributes
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test-action.yml"
pull_request:
paths-ignore:
- .gitignore
- .gitattributes
- LICENSE
- README.md
- .github/**
- "!.github/workflows/test-action.yml"
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
test-action-clone-dry-run:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./
with:
strategy: clone
dry-run: true
test-action-init-dry-run:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: ./
with:
strategy: init
dry-run: true
test-action-real:
concurrency: ${{ github.workflow }}-real
permissions:
contents: write
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./