From c4e699eee89e83d535a84f1b8b4f2dd66aaa0f2e Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Fri, 17 Sep 2021 10:47:30 -0500 Subject: [PATCH] docs: simplify the example [skip ci] --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5359ace1..766acabb 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ The package can be used locally or from CI services like GitHub Actions. Stay tu `setup-cpp` can install all of these tools: - llvm -- gcc and mingw +- gcc - cmake - ninja - meson @@ -49,7 +49,6 @@ on: jobs: Test: - if: "!contains(github.event.head_commit.message, '[skip ci]')" runs-on: ${{ matrix.os }} strategy: fail-fast: false @@ -71,11 +70,12 @@ jobs: conan: true cppcheck: true ccache: true + # add any tool that you need here... ``` In the `compiler` entry, you can specify the version after a `-`. For example, `llvm-11`. -For the tools, instead of `true`, which choses the default version, you can pass a specific version. +For the tools, instead of `true`, which chooses the default version, you can pass a specific version. ### Incomplete