Skip to content
This repository has been archived by the owner on Jul 9, 2023. It is now read-only.

Commit

Permalink
Include example 18 in the makefile and CI job
Browse files Browse the repository at this point in the history
  • Loading branch information
nickelc committed Jun 28, 2022
1 parent ede89b9 commit 7cec025
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,3 +280,5 @@ jobs:
run: cargo check -p e16_sqlite_database
- name: 'Check example 17'
run: cargo check -p e17_message_components
- name: 'Check example 18'
run: cargo check -p e18_webhook
19 changes: 19 additions & 0 deletions Makefile.toml
Original file line number Diff line number Diff line change
Expand Up @@ -362,3 +362,22 @@ args = ["make", "run_example", "e17_message_components"]
[tasks.dev_build_17]
command = "cargo"
args = ["make", "build_example", "e17_message_components"]

[tasks.18]
alias = "run_18"

[tasks.run_18]
command = "cargo"
args = ["make", "run_example_release", "e18_webhook"]

[tasks.build_18]
command = "cargo"
args = ["make", "build_example_release", "e18_webhook"]

[tasks.dev_run_18]
command = "cargo"
args = ["make", "run_example", "e18_webhook"]

[tasks.dev_build_18]
command = "cargo"
args = ["make", "build_example", "e18_webhook"]

0 comments on commit 7cec025

Please sign in to comment.