Skip to content

Commit

Permalink
v0.7 (#63)
Browse files Browse the repository at this point in the history
  • Loading branch information
HarryET committed Dec 22, 2022
1 parent bfe8ef3 commit e975867
Show file tree
Hide file tree
Showing 20 changed files with 1,934 additions and 1,032 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -36,6 +36,10 @@ jobs:
cmd: clippy
args: -- -D clippy::all
cache: {}
- name: "Clippy (ring feature)"
cmd: clippy
args: --no-default-features --features ring -- -D clippy::all
cache: {}
- name: "Formatting"
cmd: fmt
args: -- --check
Expand All @@ -44,6 +48,10 @@ jobs:
cmd: test
args: --all-features
cache: { sharedKey: "tests" }
- name: "Unit Tests (ring feature)"
cmd: test
args: --no-default-features --features ring
cache: { sharedKey: "tests-ring" }
include:
- os: ubuntu-latest
sccache-path: /home/runner/.cache/sccache
Expand Down
10 changes: 4 additions & 6 deletions .gitignore
Expand Up @@ -13,13 +13,11 @@
# Generated by Cargo
/target/

# IntelliJ IDEA
/.idea/
# Editors
.idea
*.iml

# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock
.vscode
.atom

# Certificate files
*.der
Expand Down

0 comments on commit e975867

Please sign in to comment.