Skip to content

Commit

Permalink
Merge pull request #4 from 0xCCF4/feature-v0.2.1
Browse files Browse the repository at this point in the history
Feature v0.3.0
  • Loading branch information
0xCCF4 committed Apr 11, 2024
2 parents 8fb0823 + 50afff2 commit 06766ae
Show file tree
Hide file tree
Showing 44 changed files with 2,762 additions and 1,364 deletions.
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.

0 comments on commit 06766ae

Please sign in to comment.