Skip to content

Commit

Permalink
fixup! fixup! fixup! ci: integrate clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
kaspar030 committed Feb 22, 2024
1 parent b81b778 commit f9bc6cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
merge_group:

jobs:
CI-build:
build:
runs-on: ubuntu-latest

env:
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
laze build --partition hash:${{ matrix.partition }} --builders microbit-v2,nrf52840dk,rpi-pico,rpi-pico-w -g
CI-lint:
lint:
runs-on: ubuntu-latest

steps:
Expand All @@ -79,10 +79,10 @@ jobs:
if: ${{ always() }}
runs-on: ubuntu-latest
name: Final Results
needs: [CI-build]
needs: [build]
steps:
- run: |
result="${{ needs.CI-build.result }}"
result="${{ needs.build.result }}"
if [[ $result == "success" || $result == "skipped" ]]; then
exit 0
else
Expand Down

0 comments on commit f9bc6cd

Please sign in to comment.