Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Add ABI constants for MIPS #206

Add ABI constants for MIPS

Add ABI constants for MIPS #206

Workflow file for this run

name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Build no_std
run: cargo build --no-default-features
msrv-all:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install MSRV
run: rustup update 1.81.0 && rustup default 1.81.0
- name: Test
run: cargo test --verbose
- name: Build no_std
run: cargo build --no-default-features