Skip to content

Update reuse-workflow-output.yaml #60

Update reuse-workflow-output.yaml

Update reuse-workflow-output.yaml #60

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI-222222
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the "master" branch
push:
branches: [ "**" ]
tags: ["**"]
pull_request:
branches: [ "jwx0925-*","master"]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
multiply:
runs-on: ubuntu-latest
strategy:
matrix:
param1: [100000000000000000000000d, 2000000000000000000000m]
param2: [300000000000000000000000d, 4000000000000000000000f]
steps:
- name: Print multiplication result
run: echo "The result of ${{ matrix.param1 }} x ${{ matrix.param2 }}"
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- run: echo Hello, world!!!~~
- run: |
echo $GITHUB_WORKSPACE
echo Add other actions to build,
echo test, and deploy your project.111