Skip to content
Merged
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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Run tests
run: cargo test
run: cargo test --workspace --all-features

- name: Build
run: cargo build
run: cargo build --workspace

lint:
runs-on: ubuntu-latest
Expand All @@ -53,7 +53,7 @@ jobs:
components: rustfmt, clippy

- name: Check formatting
run: cargo fmt --check -p flicknote-auth -p flicknote-cli -p flicknote-core -p flicknote-sync
run: cargo fmt --all --check

- name: Lint with clippy
run: cargo clippy --all-targets -- -D warnings
run: cargo clippy --workspace --all-targets --all-features -- -D warnings
8 changes: 4 additions & 4 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}

- name: Format code
run: cargo fmt -p flicknote-auth -p flicknote-cli -p flicknote-core -p flicknote-sync
run: cargo fmt --all --check

- name: Lint with clippy
run: cargo clippy -p flicknote-auth -p flicknote-cli -p flicknote-core -p flicknote-sync --all-targets -- -D warnings
run: cargo clippy --workspace --all-targets --all-features -- -D warnings

- name: Run tests
run: cargo test
run: cargo test --workspace --all-features

- name: Test release workflow
run: bash scripts/test-release.sh
Expand All @@ -52,7 +52,7 @@ jobs:
run: cargo deny check

- name: Build
run: cargo build
run: cargo build --workspace

osv-scan:
uses: google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@v2.3.5
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading