Skip to content

Update basic-hello.yml #2

Update basic-hello.yml

Update basic-hello.yml #2

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 "running on: ${{ matrix.os }}"