Skip to content

Create basic-hello.yml #1

Create basic-hello.yml

Create basic-hello.yml #1

Workflow file for this run

on:
push:
branches:
- main
jobs:
hello_job:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: say hello
run: |
echo "hello"
echo "world"
echo "::debug::running on: ${{ matrix.os }}"