Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
61 changes: 31 additions & 30 deletions .github/workflows/Linting.yml
Original file line number Diff line number Diff line change
@@ -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 }}
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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.
Expand Down