Update README.md #37
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | |