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

* reuse workflows https://docs.github.com/en/actions/using-workflows/reusing-workflows * reuse container workflows * integrate reusable-verify-container with reusable-verify * container -> docker_iamge * update description
21 lines
375 B
YAML
21 lines
375 B
YAML
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
|
|
|
|
name: Ubuntu
|
|
|
|
on:
|
|
- push
|
|
|
|
jobs:
|
|
verify:
|
|
name: Verify
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-18.04
|
|
- ubuntu-20.04
|
|
- ubuntu-22.04
|
|
uses: "./.github/workflows/reusable-verify.yml"
|
|
with:
|
|
os: ${{ matrix.os }}
|
|
secrets: inherit
|