Skip to content

Commit

Permalink
Test deep checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
erikbosch committed Mar 4, 2024
1 parent 1bd6cfb commit 43440d4
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/kuksa_databroker_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,13 @@ jobs:
name: Linting and Testing
runs-on: ubuntu-latest


steps:
- uses: actions/checkout@v4
with:
# Fetch everything to get tags working as expected
fetch-depth: 0
submodules: 'true'

# Seems not neccessary on ubuntu-latest runner
#- uses: dtolnay/rust-toolchain@stable
Expand All @@ -55,7 +60,9 @@ jobs:
run: cargo fmt -- --check
- name: cargo clippy
working-directory: ${{github.workspace}}
run: cargo clippy --all-targets -- -W warnings -D warnings
run: |
cargo clean
cargo clippy --all-targets -- -W warnings -D warnings
- name: cargo clippy (feature viss)
working-directory: ${{github.workspace}}
run: cargo clippy --features viss --all-targets -- -W warnings -D warnings
Expand Down

0 comments on commit 43440d4

Please sign in to comment.