Skip to content

Commit

Permalink
add magics to change the lang of algos-repo from html to rust
Browse files Browse the repository at this point in the history
  • Loading branch information
sunface committed Jan 25, 2022
1 parent ead9f6e commit 93c2090
Show file tree
Hide file tree
Showing 31 changed files with 5,036 additions and 0 deletions.
24 changes: 24 additions & 0 deletions assets/mini-redis/.github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

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

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: rustfmt
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
2 changes: 2 additions & 0 deletions assets/mini-redis/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/target
**/*.rs.bk
Loading

0 comments on commit 93c2090

Please sign in to comment.