Skip to content

chore(deps): update actions/checkout action to v4.1.1 #101

chore(deps): update actions/checkout action to v4.1.1

chore(deps): update actions/checkout action to v4.1.1 #101

Workflow file for this run

on:
push:
branches:
- main
pull_request:
name: Tests (nostd)
jobs:
test-nofeatures:
name: ${{matrix.rust}} on ${{matrix.os}}
runs-on: ${{matrix.os}}
strategy:
matrix:
rust: [1.70.0, stable]
os: [ubuntu-20.04]
env:
RUSTFLAGS: ''
CARGO_PROFILE_DEV_DEBUG: '0' # reduce size of target directory
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Toolchain
run: rustup default ${{matrix.rust}}
- name: Cache
uses: Swatinem/rust-cache@a95ba195448af2da9b00fb742d14ffaaf3c21f43 # v2.7.0
- name: Check
run: cargo check --no-default-features --all-targets
- name: Test
run: cargo test --release --no-default-features