Skip to content

Commit

Permalink
テストケースの追加
Browse files Browse the repository at this point in the history
  • Loading branch information
tshion committed Apr 27, 2024
1 parent 3b6466f commit ec93c9b
Showing 1 changed file with 41 additions and 39 deletions.
80 changes: 41 additions & 39 deletions .github/workflows/run-action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,43 +19,45 @@ jobs:
user: actions-user
- run: bash .github/workflows/display.bash

# case2:
# strategy:
# matrix:
# os:
# - macos-latest
# - ubuntu-latest
# - windows-latest
# runs-on: ${{ matrix.os }}
# steps:
# # https://github.com/actions/checkout
# - uses: actions/checkout@v4
# with:
# path: myaction
# # https://github.com/actions/checkout
# - uses: actions/checkout@v4
# with:
# path: target
# - uses: ./myaction/
# with:
# path: target
# user: github-actions
# - run: bash ../myaction/.github/workflows/display.bash
# working-directory: target
case2:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4
with:
path: myaction
# https://github.com/actions/checkout
- uses: actions/checkout@v4
with:
path: target
- uses: ./myaction/
with:
path: target
user: github-actions
- run: bash ../myaction/.github/workflows/display.bash
working-directory: myaction
- run: bash ../myaction/.github/workflows/display.bash
working-directory: target

# case3:
# strategy:
# matrix:
# os:
# - macos-latest
# - ubuntu-latest
# - windows-latest
# runs-on: ${{ matrix.os }}
# steps:
# # https://github.com/actions/checkout
# - uses: actions/checkout@v4
# - uses: ./
# with:
# global: true
# user: latest-commit
# - run: bash .github/workflows/display.bash
case3:
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
- windows-latest
runs-on: ${{ matrix.os }}
steps:
# https://github.com/actions/checkout
- uses: actions/checkout@v4
- uses: ./
with:
global: true
user: latest-commit
- run: bash .github/workflows/display.bash

0 comments on commit ec93c9b

Please sign in to comment.