Skip to content

Commit

Permalink
cancel build or package
Browse files Browse the repository at this point in the history
  • Loading branch information
Jzow committed Aug 19, 2023
1 parent 0120910 commit 57f1474
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 32 deletions.
108 changes: 77 additions & 31 deletions .github/workflows/ci_build.yml
Original file line number Diff line number Diff line change
@@ -1,45 +1,91 @@
name: Rust
name: Rust CI

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
push:
branches:
- master

env:
CARGO_TERM_COLOR: always
RUSTFLAGS: -Dwarnings

jobs:
build:

build_and_test:
name: Build and test
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust: [stable, nightly]

steps:
- uses: actions/checkout@master

- name: Install ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true

- name: Set up Rust
uses: actions/checkout@v3
with:
rust-version: stable

- name: Check out code
uses: actions/checkout@v2

- name: check and fmt and test
run: |
cargo check
cargo fmt --all -- --check
cargo test
- name: Docs
run: cargo doc --no-deps
- uses: actions/checkout@master

- name: Install ${{ matrix.rust }}
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
override: true

- name: check
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples --features logger

- name: check avoid-dev-deps
uses: actions-rs/cargo@v1
if: matrix.rust == 'nightly'
with:
command: check
args: --all -Z avoid-dev-deps

- name: check unstable
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples --tests --features unstable,logger

- name: check no-default-features
uses: actions-rs/cargo@v1
with:
command: check
args: --no-default-features

- name: check benches
uses: actions-rs/cargo@v1
with:
command: check
args: --benches

- name: tests
uses: actions-rs/cargo@v1
with:
command: test
args: --all --features logger

- name: tests unstable
uses: actions-rs/cargo@v1
with:
command: test
args: --all --features unstable,logger

check_fmt_and_docs:
name: Checking fmt, clippy, and docs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master

- name: setup
run: |
rustup component add clippy rustfmt
rustc --version
- name: clippy
run: cargo clippy --tests --examples --features logger -- -D warnings

- name: fmt
run: cargo fmt --all -- --check

- name: Docs
run: cargo doc --no-deps
2 changes: 1 addition & 1 deletion summer-boot/src/tcp/to_listener_impls.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#[cfg(unix)]
use UnixListener;
use super::UnixListener;
use super::{ConcurrentListener, FailoverListener, ParsedListener, TcpListener, ToListener};
use async_std::io;
use http_types::url::Url;
Expand Down

0 comments on commit 57f1474

Please sign in to comment.