docs: simplify the example [skip ci]

This commit is contained in:
Amin Yahyaabadi 2021-09-17 10:47:30 -05:00
parent 74cd8eb948
commit c4e699eee8
1 changed files with 3 additions and 3 deletions

View File

@ -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