created vendored crates
This commit is contained in:
parent
8bede44aa8
commit
8ed487c4cd
15672 changed files with 6291182 additions and 0 deletions
24
vendor/httpdate/.github/workflows/ci.yml
vendored
Normal file
24
vendor/httpdate/.github/workflows/ci.yml
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
on: [push, pull_request]
|
||||
|
||||
name: Continuous integration
|
||||
|
||||
jobs:
|
||||
check-test:
|
||||
name: Check and test crate
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
- run: cargo check --all-targets
|
||||
- run: cargo test
|
||||
|
||||
clippy-fmt:
|
||||
name: Run Clippy and format code
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
components: clippy, rustfmt
|
||||
- run: cargo clippy --all-targets -- -D warnings
|
||||
- run: cargo fmt --all --check
|
||||
Loading…
Add table
Add a link
Reference in a new issue