Skip to content

Commit

Permalink
remove actions-rs as it is not maintained
Browse files Browse the repository at this point in the history
  • Loading branch information
nrxus committed Aug 15, 2023
1 parent 6aa254a commit bc1235a
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 15 deletions.
30 changes: 17 additions & 13 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,20 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
override: true
- name: build
run: cargo build --verbose
- name: test
run: cargo test --verbose
- name: test --release
run: cargo test --release --verbose
- uses: actions/checkout@v3
# LATEST STABLE
- uses: dtolnay/rust-toolchain@stable
- name: build stable
run: cargo +stable build --verbose
- name: test stable
run: cargo +stable test --verbose
- name: test stable --release
run: cargo +stable test --release --verbose
# MSRV
- uses: dtolnay/rust-toolchain@1.58.1
- name: build MSRV
run: cargo +1.58.1 build --verbose
- name: test MSRV
run: cargo +1.58.1 test --verbose
- name: test MSRV --release
run: cargo +1.58.1 test --release --verbose
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ repository = "https://github.com/nrxus/faux"
edition = "2021"
keywords = ["mock", "mocking", "test", "testing", "faux"]
readme = "README.md"
rust-version = "1.56"
rust-version = "1.58"

[dependencies]
faux_macros = { path = "faux_macros", version = "0.1.8" }
Expand Down
2 changes: 1 addition & 1 deletion faux_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ description = "Implementations for #[create], #[methods], when!"
homepage = "https://github.com/nrxus/faux"
repository = "https://github.com/nrxus/faux"
keywords = ["mock", "mocking", "test", "testing", "faux"]
rust-version = "1.56"
rust-version = "1.58"

[dependencies]
syn = { version = "2", features = ["full", "extra-traits"] }
Expand Down

0 comments on commit bc1235a

Please sign in to comment.