Skip to content

Revamp README.md

Revamp README.md #11

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
target: thumbv6m-none-eabi
override: true
- name: Install dependencies
run: cargo install flip-link
- name: Build
run: cargo build --verbose
# For now, remove tests
# - name: Run tests
# run: cargo test --verbose