Compare commits

..

4 Commits

Author SHA1 Message Date
phoenix 6411133c95 workflow_tag_fix (#35)
Reviewed-on: #35
Co-authored-by: phoenix <kundeng94@gmail.com>
Co-committed-by: phoenix <kundeng94@gmail.com>
2025-04-05 21:59:26 +00:00
phoenix 8a08672423 workflow_tag_fix (#33)
Reviewed-on: #33
Co-authored-by: phoenix <kundeng94@gmail.com>
Co-committed-by: phoenix <kundeng94@gmail.com>
2025-04-05 21:27:50 +00:00
phoenix c555110367 rust_version_bump (#32)
Reviewed-on: #32
Co-authored-by: phoenix <kundeng94@gmail.com>
Co-committed-by: phoenix <kundeng94@gmail.com>
2025-04-05 18:13:28 +00:00
phoenix 4b6f6cb67d rust_version (#31)
Reviewed-on: #31
Co-authored-by: phoenix <kundeng94@gmail.com>
Co-committed-by: phoenix <kundeng94@gmail.com>
2025-04-05 17:30:16 +00:00
3 changed files with 9 additions and 9 deletions
+2 -3
View File
@@ -3,9 +3,8 @@ name: Release Tagging
on:
push:
branches:
- main
- devel
tags:
- 'v*' # Trigger on tags matching v*
jobs:
release:
@@ -19,7 +18,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.85.0
toolchain: 1.86.0
components: cargo
- name: Extract Version from Cargo.toml
+5 -5
View File
@@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.85.0
toolchain: 1.86.0
- run: cargo check
test:
@@ -28,7 +28,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.85.0
toolchain: 1.86.0
- run: cargo test
fmt:
@@ -38,7 +38,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.85.0
toolchain: 1.86.0
- run: rustup component add rustfmt
- run: cargo fmt --all -- --check
@@ -49,7 +49,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.85.0
toolchain: 1.86.0
- run: rustup component add clippy
- run: cargo clippy -- -D warnings
@@ -60,7 +60,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: 1.85.0
toolchain: 1.86.0
- run: cargo build
+2 -1
View File
@@ -1,7 +1,8 @@
[package]
name = "icarus_models"
version = "0.3.0"
version = "0.4.0"
edition = "2024"
rust-version = "1.86"
description = "models used for the icarus project"
license = "MIT"