\r
# Allows you to run this workflow manually from the Actions tab\r
workflow_dispatch:\r
-\r
# A workflow run is made up of one or more jobs that can run sequentially or in parallel\r
jobs:\r
# This workflow contains a single job called "build"\r
build:\r
+ strategy:\r
+ fail-fast: false\r
+ matrix:\r
+ os: [ubuntu-latest, macos-latest, windows-latest]\r
# The type of runner that the job will run on\r
- runs-on: ubuntu-latest\r
+ runs-on: ${{ matrix.os }}\r
# Steps represent a sequence of tasks that will be executed as part of the job\r
steps:\r
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it\r
key: bazel\r
# Runs a set of commands using the runners shell\r
- name: Execute build script\r
+ shell: bash\r
run: |\r
sudo apt-get install build-essential -y\r
bazel build //:package\r