bump async-tungstenite from 0.25 to 0.28 #65
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, pull_request] | |
jobs: | |
linux-stable: | |
name: Linux Rust Stable | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install latest stable Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
components: clippy | |
- name: Install nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
- name: Checkout crate | |
uses: actions/checkout@v3 | |
- name: Run tests | |
run: bash ci/test.bash | |
- name: Build documentation | |
run: bash ci/doc.bash | |
linux-nightly: | |
name: Linux Rust Nightly | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install latest nightly Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: clippy | |
- name: Checkout crate | |
uses: actions/checkout@v3 | |
- name: Run tests | |
run : bash ci/test.bash | |
- name: Run clippy | |
run : bash ci/clippy.bash | |
- name: Build documentation | |
run : bash ci/doc.bash | |
- name: Install cargo-tarpaulin binary crate | |
uses: actions-rs/[email protected] | |
with: | |
crate: cargo-tarpaulin | |
version: latest | |
use-tool-cache: true | |
- name: Run cargo-tarpaulin | |
run : | | |
cargo tarpaulin --out Xml | |
- name: Upload to codecov.io | |
uses: codecov/[email protected] | |
- name: Run cargo-deny | |
uses: EmbarkStudios/cargo-deny-action@v1 | |