Skip to content

Update README.md

Update README.md #58

Workflow file for this run

name: CI
on:
push:
branches: [ "add-tests-only" ]
pull_request:
branches: [ "add-tests-only" ]
workflow_dispatch:
jobs:
build:
# Use a matrix to run on multiple OS versions
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- uses: actions/checkout@v4
# This will run on all specified operating systems
- name: Run a one-line script
run: echo Hello, world! Running on ${{ matrix.os }}
# Run multiple commands as part of the CI process
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project on ${{ matrix.os }}