Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,23 @@ on:
workflow_dispatch:

jobs:
psm-msrv-test:
name: Test psm on MSRV
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Rust 1.88.0
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88.0
profile: minimal
default: true
- name: Test psm
uses: actions-rs/cargo@v1
with:
command: test
args: --manifest-path=psm/Cargo.toml --all-targets

native-test:
name: Test ${{ matrix.manifest }} on ${{ matrix.os }} with ${{ matrix.rust_toolchain }} and ${{ matrix.mode }}
runs-on: ${{ matrix.os }}
Expand Down
1 change: 1 addition & 0 deletions psm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
name = "psm"
version = "0.1.31"
edition = "2021"
rust-version = "1.88.0"
authors = ["Simonas Kazlauskas <psm@kazlauskas.me>"]
build = "build.rs"
description = "Portable Stack Manipulation: stack manipulation and introspection routines"
Expand Down
Loading