Skip to content

Commit

Permalink
feat: implement echo
Browse files Browse the repository at this point in the history
  • Loading branch information
Agrendalath authored Sep 20, 2023
1 parent 563de9e commit 8ed8f7f
Show file tree
Hide file tree
Showing 6 changed files with 646 additions and 0 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
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 build
- 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 8ed8f7f

Please sign in to comment.