Skip to content

Commit

Permalink
Merge pull request #2 from tanveerraza789/main
Browse files Browse the repository at this point in the history
DNA Mutation analysis in Rust
  • Loading branch information
gswebspace authored Nov 23, 2023
2 parents da61188 + edd8c3c commit 4223b1b
Show file tree
Hide file tree
Showing 16 changed files with 4,054 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Rust
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Clippy
run: cargo clippy -- -D warnings
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
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 4223b1b

Please sign in to comment.