Skip to content

Commit

Permalink
Feature/structure and testing changes (#22)
Browse files Browse the repository at this point in the history
* refactor: refactored code to facilitate testing in pipeline

* refactor: added some tests

* refactor: added some tests

* refactor: added some tests

* version bump

* made changes so arguments will accept Option<&T> instead of &Option<T>

* added auth related code from main branch

* allow support for passing DNS in the socks_address

* accepted clippy suggestions

* bump the dependencies version
  • Loading branch information
KaranGauswami authored Jun 23, 2024
1 parent c7d0c8f commit 71448ee
Show file tree
Hide file tree
Showing 9 changed files with 1,485 additions and 386 deletions.
13 changes: 5 additions & 8 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,18 @@ name: Rust

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

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

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

0 comments on commit 71448ee

Please sign in to comment.