mirror of
https://github.com/shimataro/ssh-key-action.git
synced 2025-06-19 22:52:10 +10:00

* set workflow name * update actions/checkout version: v2 -> v3 * update actions/setup-node version: v1 -> v3
19 lines
352 B
YAML
19 lines
352 B
YAML
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
|
name: Windows
|
|
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
verify:
|
|
name: Verify
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- windows-2019
|
|
- windows-2022
|
|
uses: "./.github/workflows/reusable-verify.yml"
|
|
with:
|
|
os: ${{ matrix.os }}
|
|
secrets: inherit
|