Skip to content

Commit 3d5eb55

Browse files
committed
Fixup CI
1 parent f7ebe94 commit 3d5eb55

3 files changed

Lines changed: 8 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,12 +61,9 @@ jobs:
6161
fail-fast: false
6262
matrix:
6363
build: [ Debug, Release ]
64-
os: [ windows-2019, windows-latest ]
64+
os: [ windows-latest ]
6565
arch: [ Win32, x64 ]
6666
modules: [ "OFF", "ON" ]
67-
exclude:
68-
- os: windows-2019
69-
modules: "ON"
7067
name: ${{matrix.os}} ${{matrix.arch}} ${{matrix.build}} ${{matrix.modules}}
7168
env:
7269
CTEST_OUTPUT_ON_FAILURE: 1

.github/workflows/sanitize.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
os: [ ubuntu-20.04 ]
10+
os: [ ubuntu-latest ]
1111
flags:
1212
- "-fsanitize=leak -g -O1 -fno-omit-frame-pointer" #LSAN
1313
- "-fsanitize=address -g -O1 -fno-omit-frame-pointer" #ASAN

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ provides the ability to **parse**, **compare**, and **increment** semantic versi
4545
4646
FetchContent_Declare(#[[...]])
4747
```
48-
Then you can import the package:
48+
Then, you can import the package:
4949
```cpp
5050
import semver;
5151
```
@@ -58,7 +58,7 @@ provides the ability to **parse**, **compare**, and **increment** semantic versi
5858
```
5959

6060
4. With `Bazel`
61-
If you wish to use Bazel add MODULE.bazel
61+
6262
```
6363
bazel_dep(name = "cpp-semver", version = "<cpp-semver-version>")
6464
@@ -67,17 +67,18 @@ provides the ability to **parse**, **compare**, and **increment** semantic versi
6767
remote = "https://github.com/z4kn4fein/cpp-semver.git",
6868
tag = "<cpp-semver-version>"
6969
)
70-
7170
```
72-
and include cpp-semver to your dependency list. Example is given below:
71+
72+
Then, you can add `cpp-semver` to your dependency list:
7373
```
7474
cc_library(
7575
name = "example-library",
7676
deps = ["@cpp-semver//:cpp-semver"],
7777
)
7878
```
7979

80-
Note: C++ module support for *Bazel* has not been added yet.
80+
> [!NOTE]\
81+
> Note: C++ module support for *Bazel* has not been added yet.
8182
8283
## Usage
8384
The following options are available to construct a `version`:

0 commit comments

Comments
 (0)