diff options
author | Egor Pugin <egor.pugin@gmail.com> | 2020-03-13 17:42:22 +0300 |
---|---|---|
committer | Egor Pugin <egor.pugin@gmail.com> | 2020-03-13 17:42:22 +0300 |
commit | c2f04d603807304a24268cd311ec899a90a399ff (patch) | |
tree | 397a8bac022b2b3141c6be0e60f835a1732ff46d | |
parent | c4d3f8e8dab6caa24da50d616b3fa156988bfce4 (diff) | |
parent | 934ba31118dc2008466034d2b23f89c0f0a0e016 (diff) |
Merge branch 'master' of github.com-egorpugin:reo7sp/tgbot-cpp
-rw-r--r-- | .github/workflows/sw.yml | 2 | ||||
-rw-r--r-- | sw.cpp | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/sw.yml b/.github/workflows/sw.yml index a58f77c..be5d660 100644 --- a/.github/workflows/sw.yml +++ b/.github/workflows/sw.yml @@ -1,6 +1,6 @@ name: sw -on: [push, pull-request] +on: [push, pull_request] jobs: build: @@ -17,6 +17,7 @@ void build(Solution &s) auto &t = tgbot.addExecutable("test"); { t.Scope = TargetScope::Test; + t += cpp11; t += "test/.*"_rr; t += "test"_idir; t += "SW_BUILD"_def; |