Skip to content

Commit

Permalink
feat: implement echo
Browse files Browse the repository at this point in the history
  • Loading branch information
Agrendalath committed Sep 20, 2023
1 parent 563de9e commit 4c53e92
Show file tree
Hide file tree
Showing 6 changed files with 645 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
on: [push]

name: CI

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- run: cargo check
- run: cargo test
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
.idea
Loading

0 comments on commit 4c53e92

Please sign in to comment.