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

add rustfmt to codecov & exclude fuzz from workspace #414

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
4 changes: 4 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4

- name: Install rustfmt
run: |
rustup component add rustfmt

- name: Generate code coverage
run: |
cargo +nightly tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/target
target
/book/book
**/*.rs.bk
Cargo.lock
Expand Down
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[workspace]
members = ["logos-cli", "logos-codegen", "logos-derive", "tests", "fuzz"]
members = ["logos-cli", "logos-codegen", "logos-derive", "tests"]
exclude = ["fuzz"]
resolver = "2"

[workspace.package]
Expand Down
12 changes: 1 addition & 11 deletions fuzz/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,6 @@
[package]
name = "logos-fuzz"
authors.workspace = true
categories.workspace = true
description.workspace = true
edition.workspace = true
homepage.workspace = true
keywords.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
edition = "2021"
publish = false

[dependencies]
Expand Down
Loading