chore: bump MSRV to 1.74.1 #482
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: CI | |
on: | |
push: | |
# Publish `main` as Docker `latest` image. | |
branches: | |
- main | |
- v* | |
# Publish `v1.2.3` tags as releases. | |
tags: | |
- v* | |
# Run tests for any PRs. | |
pull_request: | |
branches: | |
- main | |
- v* | |
jobs: | |
rust-test: | |
name: Test on Rust ${{ matrix.rust }} | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, 'skip ci')" | |
strategy: | |
matrix: | |
rust: | |
- stable | |
- beta | |
- nightly | |
- 1.74.1 # MSRV | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.6.0 | |
with: | |
access_token: ${{ github.token }} | |
- name: Install Rust Toolchain | |
uses: actions-rs/toolchain@v1 | |
if: ${{ !contains(github.event.head_commit.message, 'skip test') }} | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
components: rustfmt, clippy | |
- name: Install wasm-pack | |
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh | |
- name: Check Format | |
uses: actions-rs/cargo@v1 | |
if: ${{ !contains(github.event.head_commit.message, 'skip test') }} | |
with: | |
command: fmt | |
args: --all -- --check | |
- name: Lint | |
uses: actions-rs/cargo@v1 | |
if: ${{ !contains(github.event.head_commit.message, 'skip test') }} | |
with: | |
command: clippy | |
args: --all --all-targets --all-features | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
if: ${{ !contains(github.event.head_commit.message, 'skip test') }} | |
with: | |
command: test | |
args: --no-run --all-features | |
- name: Test | |
uses: actions-rs/cargo@v1 | |
if: ${{ !contains(github.event.head_commit.message, 'skip test') }} | |
with: | |
command: test | |
args: --all-features | |
- name: WASM Test | |
if: ${{ !contains(github.event.head_commit.message, 'skip test') }} | |
run: wasm-pack test --node exc-core |