This repository was archived by the owner on Jul 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Draft release v0.10.0 and new release pipeline
- Loading branch information
Showing
5 changed files
with
146 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,59 @@ | ||
name: CI | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: ["*"] | ||
branches: | ||
- master | ||
|
||
pull_request: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
|
||
name: Build and Test | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
rust_version: [stable, "1.53.0"] | ||
rust_version: [stable, 1.56.0] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
|
||
- name: Setup Rust toolchain | ||
run: | | ||
rustup default ${{ matrix.rust_version }} | ||
rustup component add clippy rustfmt | ||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: ${{ matrix.rust_version }} | ||
override: true | ||
profile: minimal | ||
|
||
- name: Build | ||
run: cargo build --locked --verbose | ||
|
||
- name: Run tests | ||
- name: Test | ||
run: cargo test --locked --verbose | ||
|
||
- name: Rustfmt and Clippy | ||
run: | | ||
cargo fmt -- --check | ||
cargo clippy | ||
if: matrix.rust_version == 'stable' | ||
lint: | ||
name: Rustfmt and Clippy | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
submodules: true | ||
|
||
- name: Install Rust | ||
uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
components: rustfmt, clippy | ||
|
||
- name: Rustfmt | ||
run: cargo fmt -- --check | ||
|
||
- name: Clippy | ||
run: cargo clippy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "remodel" | ||
version = "0.9.1" | ||
version = "0.10.0" | ||
description = "A tool to read, modify, and write Roblox objects." | ||
authors = ["Lucien Greathouse <[email protected]>"] | ||
edition = "2018" | ||
|