Merge pull request #430 from fujiwara/zip-symlink #23
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test action | |
on: | |
push: | |
branches: | |
- v1 | |
- v1-actions-test | |
workflow_dispatch: | |
jobs: | |
install: | |
strategy: | |
matrix: | |
env: | |
- runner: ubuntu-latest | |
- runner: macos-latest | |
name: test action | |
runs-on: ${{ matrix.env.runner }} | |
steps: | |
- uses: fujiwara/lambroll@v1-actions-test | |
with: | |
version: v1.0.4 | |
- run: | | |
lambroll version 2>&1 | fgrep v1.0.4 | |
- uses: fujiwara/lambroll@v1 | |
with: | |
version: v1.0.5 | |
- run: | | |
lambroll version 2>&1 | fgrep v1.0.5 |