Skip to content

Commit

Permalink
Merge pull request #1 from kanekoshoyu/feature/websocket_interaction
Browse files Browse the repository at this point in the history
Feature/websocket interaction
  • Loading branch information
kanekoshoyu committed Aug 13, 2023
2 parents 5f6137c + dbba601 commit 5eabf92
Show file tree
Hide file tree
Showing 9 changed files with 391 additions and 467 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Rust

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose


clippy_check:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly
components: clippy
override: true
- uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
/target
target
log/*
Loading

0 comments on commit 5eabf92

Please sign in to comment.