Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature v0.3 #4

Merged
merged 17 commits into from
Apr 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Default owner
* @0xCCF4

# Github workflows
/.github/ @0xCCF4
3 changes: 1 addition & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@ jobs:
archive: zip
- target: x86_64-unknown-linux-musl
archive: tar.gz
- target: x86_64-apple-darwin
archive: zip

steps:
- uses: actions/checkout@master
- uses: actions-rust-lang/setup-rust-toolchain@v1.8.0
with:
toolchain: "stable"
target: ${{ matrix.target }}

- name: Build
run: cargo build --verbose
Expand Down
13 changes: 10 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,10 @@ env:

jobs:
test:

strategy:
matrix:
features: ["", "hash-sha1,hash-sha2,hash-xxh"]

runs-on: ubuntu-latest

steps:
Expand All @@ -21,5 +24,9 @@ jobs:
with:
toolchain: "stable"

- name: Build with stable toolchain
run: cargo build --verbose
- name: Build feature set ${{ matrix.features }}
run: cargo build --no-default-features --features "${{ matrix.features }}"

- name: Test feature set ${{ matrix.features }}
run: cargo test --no-default-features --features "${{ matrix.features }}"

190 changes: 44 additions & 146 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading