Skip to content

Commit

Permalink
Merge branch 'release/0.5.11'
Browse files Browse the repository at this point in the history
  • Loading branch information
s3rius committed Oct 23, 2022
2 parents 58a6e71 + 35baf97 commit 0da58b3
Show file tree
Hide file tree
Showing 19 changed files with 694 additions and 456 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
command: build
use-cross: ${{ matrix.job.use-cross }}
toolchain: ${{ matrix.rust }}
args: --release --features=all,metrics --target ${{ matrix.job.target }}
args: --release --features=all --target ${{ matrix.job.target }}

- name: install strip command
shell: bash
Expand Down
17 changes: 13 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ repos:
- id: trailing-whitespace
- repo: local
hooks:

- id: fmt
types:
- rust
Expand Down Expand Up @@ -40,13 +39,23 @@ repos:
- -D
- warnings

- id: build
- id: check
types:
- rust
name: cargo check
language: system
entry: cargo
pass_filenames: false
args:
- check

- id: check-all
types:
- rust
name: cargo build
name: cargo check all
language: system
entry: cargo
pass_filenames: false
args:
- build
- check
- --features=all
Loading

0 comments on commit 0da58b3

Please sign in to comment.