Skip to content

fix(sys): use C-unwind abi for unw_resume #8

fix(sys): use C-unwind abi for unw_resume

fix(sys): use C-unwind abi for unw_resume #8

Workflow file for this run

name: Rust
on: [push, pull_request]
jobs:
# Check and lint are separated because linting doesn't seem to fail
# if there are errors are outside of the PR's changes.
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v2
- name: Setup | Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2024-02-07
override: true
- name: Check
uses: actions-rs/cargo@v1
with:
command: check
args: --lib --bins --examples --all-features
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@nightly
with:
components: clippy
- uses: giraffate/clippy-action@v1
with:
reporter: "github-pr-check"
github_token: ${{ secrets.GITHUB_TOKEN }}
clippy_flags: --lib --bins --examples --all-features
fmt:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- name: Setup | Checkout
uses: actions/checkout@v2
- name: Setup | Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2024-02-07
override: true
- name: Setup | Install Rustfmt
run: rustup component add rustfmt
- name: Format
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check