Skip to content

Commit

Permalink
feat: initial implementation (#1)
Browse files Browse the repository at this point in the history
* feat: initial implementation

* add requirements to readme

* add force command to readme example
  • Loading branch information
vlopes11 authored Nov 16, 2023
1 parent 0ae9b68 commit 62dec3e
Show file tree
Hide file tree
Showing 10 changed files with 1,405 additions and 1 deletion.
21 changes: 21 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Rust

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

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -D warnings

jobs:
build:
name: build
steps:
- uses: actions/checkout@v3
- name: Install Rust
run: rustup show
- name: Build
run: cargo build
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
Loading

0 comments on commit 62dec3e

Please sign in to comment.