Skip to content

chore(deps): bump actions/checkout from 3 to 4 (#69) #58

chore(deps): bump actions/checkout from 3 to 4 (#69)

chore(deps): bump actions/checkout from 3 to 4 (#69) #58

Workflow file for this run

name: bip0039
on:
push:
branches: master
pull_request:
paths:
- .github/workflows/bip0039.yml
- bip0039/**
- Cargo.*
path-ignore:
- bip0039/README.md
- bip0039/CHANGELOG.md
defaults:
run:
working-directory: bip0039
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
test:
strategy:
fail-fast: false
matrix:
platform: [ubuntu-latest, macos-latest, windows-latest]
toolchain: [stable]
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: ${{ matrix.toolchain }}
override: true
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features
no-std:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
target: thumbv6m-none-eabi
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
args: --no-default-features --features all-languages --target thumbv6m-none-eabi
msrv:
runs-on: ubuntu-latest
steps:
- name: Checkout Sources
uses: actions/checkout@v4
- name: Install Rust Toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.60.0
override: true
- name: Test
uses: actions-rs/cargo@v1
with:
command: test
args: --all-features