Skip to content

Commit

Permalink
enable clippy checks
Browse files Browse the repository at this point in the history
  • Loading branch information
stlankes committed Nov 10, 2024
1 parent 3fa617d commit 6f419db
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/clippy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Clippy

on:
push:
branches:
- stage0
pull_request:
branches:
- stage0

jobs:
build:

runs-on: ${{ matrix.os }}

strategy:
matrix:
os: [ubuntu-latest]

steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Check Cargo availability
run: cargo --version
- name: Check clippy (x86_64)
run: cargo clippy
- name: Check clippy (i688)
run: cargo clippy --target i686-eduos.json

0 comments on commit 6f419db

Please sign in to comment.