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

v0.7 #63

Merged
merged 24 commits into from Dec 22, 2022
Merged

v0.7 #63

Show file tree
Hide file tree
Changes from 22 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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