Mark lr::write as deprecated #896
Workflow file for this run
This file contains hidden or 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
on: | |
push: | |
branches: [ staging, trying, master ] | |
pull_request: | |
name: CI | |
jobs: | |
ci-linux: | |
runs-on: ubuntu-latest | |
continue-on-error: ${{ matrix.experimental || false }} | |
strategy: | |
matrix: | |
# All generated code should be running on stable now | |
rust: [stable] | |
features: ["", "critical-section-single-core"] | |
include: | |
# Test MSRV | |
- rust: 1.59.0 | |
features: "" | |
# Test nightly but don't fail | |
- rust: nightly | |
features: "" | |
experimental: true | |
- rust: nightly | |
features: "critical-section-single-core" | |
experimental: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
- name: Run tests | |
run: cargo test --all --features "${{ matrix.features }}" | |
# FIXME: test on macOS and Windows |