forked from CosmWasm/wasmvm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
62 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# .github/workflows/clippy.yml | ||
name: Clippy Checks | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
libwasmvm_clippy_msrv: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.83.0 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Version information | ||
run: rustc --version && cargo --version | ||
- name: Add clippy component | ||
run: rustup component add clippy | ||
- name: Run clippy | ||
working-directory: libwasmvm | ||
run: cargo clippy --all-targets -- -D warnings | ||
|
||
libwasmvm_clippy_stable: | ||
runs-on: ubuntu-latest | ||
container: | ||
image: rust:1.83.0 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Version information | ||
run: rustc --version && cargo --version | ||
- name: Add clippy component | ||
run: rustup component add clippy | ||
- name: Run clippy | ||
working-directory: libwasmvm | ||
run: cargo clippy --all-targets -- -D warnings |
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# .github/workflows/windows.yml | ||
name: Windows Tests | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
libwasmvm_sanity_windows: | ||
runs-on: windows-latest | ||
container: | ||
image: rust:1.83.0 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Show Rust version information | ||
run: rustc --version && cargo --version && rustup --version | ||
- name: Run unit tests | ||
working-directory: libwasmvm | ||
run: cargo test |