diff --git a/.github/workflows/Linting.yml b/.github/workflows/Linting.yml index 8a161930..5aac1660 100644 --- a/.github/workflows/Linting.yml +++ b/.github/workflows/Linting.yml @@ -1,35 +1,36 @@ ---- - name: Linting +name: Linting - on: # yamllint disable-line rule:truthy - push: null - pull_request: null +on: + push: + branches: + - "master" + pull_request: - permissions: {} +permissions: {} - jobs: - Super_Linter: - name: Super Linter - runs-on: ubuntu-latest +jobs: + Super_Linter: + name: Super Linter + runs-on: ubuntu-latest - permissions: - contents: read - packages: read - # To report GitHub Actions status checks - statuses: write + permissions: + contents: read + packages: read + # To report GitHub Actions status checks + statuses: write - steps: - - name: Checkout code - uses: actions/checkout@v4 - with: - fetch-depth: 0 - - name: Super-linter - uses: super-linter/super-linter@v7.2.0 # x-release-please-version - env: - # Linters - VALIDATE_MARKDOWN: true - VALIDATE_YAML: true - LINTER_RULES_PATH: ./ - MARKDOWN_CONFIG_FILE: .markdownlint.yml - ENABLE_GITHUB_ACTIONS_STEP_SUMMARY: true - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + - name: Super-linter + uses: super-linter/super-linter@v7.2.0 # x-release-please-version + env: + # Linters + VALIDATE_MARKDOWN: true + VALIDATE_YAML: true + LINTER_RULES_PATH: ./ + MARKDOWN_CONFIG_FILE: .markdownlint.yml + ENABLE_GITHUB_ACTIONS_STEP_SUMMARY: true + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 1b4759a2..5861e7ba 100644 --- a/README.md +++ b/README.md @@ -8,8 +8,6 @@ This is a curated list of resources related to embedded and low-level programmin This project is developed and maintained by the [Resources team][team]. -**Don't see something you want or need here?** Add it to the [Not Yet Awesome Embedded Rust](https://github.com/rust-embedded/not-yet-awesome-embedded-rust) list! - ## Table of Contents - [Embedded Rust](#embedded-rust) @@ -1386,7 +1384,7 @@ Work in progress crates. Help the authors make these crates awesome! - [OxCC](https://github.com/jonlamb-gh/oxcc): A port of Open Source Car Control written in Rust - [Rubble](https://github.com/jonas-schievink/rubble): A pure-Rust embedded BLE stack [![crates.io](https://img.shields.io/crates/v/rubble.svg)](https://crates.io/crates/rubble) - [post-haste](https://github.com/petekubiak/post-haste): A no_std, alloc-free async Rust library for creating modular projects. -- + ## Panic handling There are many ways to handle panics in embedded devices, these crates provide helpful variants.