New release 0.11.5 #5
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: build | |
on: | |
pull_request: | |
types: [opened, synchronize, reopened] | |
push: | |
branches: | |
- main | |
jobs: | |
msrv: | |
name: Build on minimal supported rust | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Rust 1.75 | |
run: | | |
rustup override set 1.75 | |
rustup update 1.75 | |
rustc --version | |
- name: Build with default feature | |
run: cargo build | |
- name: Build with tokio feature | |
run: cargo build --features tokio_socket | |
- name: Build with smol_socket feature | |
run: cargo build --features smol_socket |