Update Rust crate encoding_rs to 0.8.35 #3130
Workflow file for this run
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
name: Cargo Build & Test | |
on: | |
push: | |
paths: | |
- .github/workflows/build.yml | |
- .github/workflows/release.yml | |
- assets/** | |
- src/** | |
- Cargo.toml | |
- Cargo.lock | |
- build.rs | |
pull_request: | |
paths: | |
- .github/workflows/build.yml | |
- .github/workflows/release.yml | |
- assets/** | |
- src/** | |
- Cargo.toml | |
- Cargo.lock | |
- build.rs | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
name: Rust project - latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest, windows-latest, macos-latest] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v4 | |
- name: Install Rust | |
uses: moonrepo/setup-rust@v1 | |
- name: Check | |
run: cargo check --verbose | |
- name: Run tests | |
run: cargo test --verbose |