Remove embedded_host_dtb
feature
#93
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Rust | ||
on: | ||
push: | ||
branches: | ||
- master | ||
pull_request: | ||
env: | ||
CARGO_INCREMENTAL: 0 | ||
# Copyright (c) 2021 sksat | ||
# https://github.com/sksat/action-clippy | ||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: recursive | ||
- name: install clippy | ||
uses: dsherret/rust-toolchain-file@v1 | ||
- name: create dummy file | ||
run: touch vmlinux | ||
run: echo '#!/bin/sh' > dtc && chmod +x dtc | ||
Check failure on line 27 in .github/workflows/rust.yml
|
||
run: touch guest.dtb | ||
- uses: sksat/[email protected] | ||
if: github.event_name == 'push' | ||
with: | ||
reporter: github-check | ||
- uses: sksat/[email protected] | ||
if: github.event_name == 'pull_request' | ||
with: | ||
reporter: github-pr-review | ||
- name: format check | ||
run: cargo fmt --all -- --check | ||
# no crate for test in no_std | ||
#- name: unit test | ||
# run: cargo test | ||