2021-06-12 20:18:21 +02:00
|
|
|
name: CI
|
|
|
|
|
2022-03-05 12:13:53 +01:00
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
2022-08-09 18:43:02 +02:00
|
|
|
MSRV: '1.60'
|
2022-03-05 12:13:53 +01:00
|
|
|
|
2021-06-12 20:18:21 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-08-07 11:11:29 +02:00
|
|
|
- main
|
2021-06-12 20:18:21 +02:00
|
|
|
pull_request: {}
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-01-20 10:34:44 +01:00
|
|
|
- uses: arduino/setup-protoc@v1
|
|
|
|
with:
|
|
|
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
2023-04-15 09:46:43 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@beta
|
2021-06-12 20:18:21 +02:00
|
|
|
with:
|
2021-11-09 12:53:57 +01:00
|
|
|
components: clippy, rustfmt
|
2022-08-09 15:18:10 +02:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2021-06-12 20:18:21 +02:00
|
|
|
- name: Check
|
2023-03-10 12:02:11 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: clippy
|
2023-04-14 22:26:56 +02:00
|
|
|
args: --workspace --all-targets --all-features -- -D warnings
|
2021-06-12 20:18:21 +02:00
|
|
|
- name: rustfmt
|
2023-03-10 12:02:11 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: fmt
|
|
|
|
args: -- --check
|
2021-06-12 20:18:21 +02:00
|
|
|
|
2021-06-12 21:44:40 +02:00
|
|
|
check-docs:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-01-08 16:41:59 +01:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2021-10-19 22:25:06 +02:00
|
|
|
- uses: Swatinem/rust-cache@v1
|
2021-06-12 21:44:40 +02:00
|
|
|
- name: cargo doc
|
2021-08-07 11:06:42 +02:00
|
|
|
env:
|
2023-03-23 15:55:56 +01:00
|
|
|
RUSTDOCFLAGS: "-D rustdoc::all -A rustdoc::private-doc-tests"
|
2021-06-12 21:44:40 +02:00
|
|
|
run: cargo doc --all-features --no-deps
|
|
|
|
|
2021-06-12 20:18:21 +02:00
|
|
|
cargo-hack:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-03-10 12:02:11 +01:00
|
|
|
- uses: arduino/setup-protoc@v1
|
2023-01-08 16:41:59 +01:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2021-10-19 22:25:06 +02:00
|
|
|
- uses: Swatinem/rust-cache@v1
|
2021-06-12 20:18:21 +02:00
|
|
|
- name: Install cargo-hack
|
|
|
|
run: |
|
|
|
|
curl -LsSf https://github.com/taiki-e/cargo-hack/releases/latest/download/cargo-hack-x86_64-unknown-linux-gnu.tar.gz | tar xzf - -C ~/.cargo/bin
|
|
|
|
- name: cargo hack check
|
|
|
|
run: cargo hack check --each-feature --no-dev-deps --all
|
|
|
|
|
2023-02-16 22:41:41 +01:00
|
|
|
cargo-public-api-crates:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
crate: [axum, axum-core, axum-extra, axum-macros]
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-04-15 09:46:43 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@nightly
|
2023-02-16 22:41:41 +01:00
|
|
|
- uses: Swatinem/rust-cache@v1
|
|
|
|
- name: Install cargo-public-api-crates
|
|
|
|
run: |
|
|
|
|
cargo install --git https://github.com/davidpdrsn/cargo-public-api-crates
|
|
|
|
- name: cargo public-api-crates check
|
|
|
|
run: cargo public-api-crates --manifest-path ${{ matrix.crate }}/Cargo.toml check
|
|
|
|
|
2021-06-12 20:18:21 +02:00
|
|
|
test-versions:
|
|
|
|
needs: check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-03-18 16:28:23 +01:00
|
|
|
rust: [stable, beta]
|
2021-06-12 20:18:21 +02:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-03-10 12:02:11 +01:00
|
|
|
- uses: arduino/setup-protoc@v1
|
2023-04-15 09:46:43 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@master
|
2021-06-12 20:18:21 +02:00
|
|
|
with:
|
|
|
|
toolchain: ${{ matrix.rust }}
|
2021-10-19 22:25:06 +02:00
|
|
|
- uses: Swatinem/rust-cache@v1
|
2021-06-12 20:18:21 +02:00
|
|
|
- name: Run tests
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
2021-06-19 13:44:21 +02:00
|
|
|
args: --all --all-features --all-targets
|
2021-06-12 20:18:21 +02:00
|
|
|
|
2023-03-10 12:02:11 +01:00
|
|
|
# some examples doesn't support our MSRV so we only test axum itself on our MSRV
|
2022-11-19 12:45:03 +01:00
|
|
|
test-nightly:
|
|
|
|
needs: check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-04-15 09:46:43 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@master
|
2022-11-19 12:45:03 +01:00
|
|
|
with:
|
|
|
|
# same as `axum-macros/rust-toolchain`
|
|
|
|
toolchain: nightly-2022-11-18
|
|
|
|
- uses: Swatinem/rust-cache@v1
|
|
|
|
- name: Run nightly tests
|
|
|
|
working-directory: axum-macros
|
|
|
|
run: |
|
|
|
|
cargo test
|
|
|
|
|
2022-06-27 20:44:20 +02:00
|
|
|
# some examples doesn't support our MSRV (such as async-graphql)
|
|
|
|
# so we only test axum itself on our MSRV
|
2021-11-03 10:22:31 +01:00
|
|
|
test-msrv:
|
|
|
|
needs: check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-04-15 09:46:43 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@master
|
2021-11-03 10:22:31 +01:00
|
|
|
with:
|
2022-06-27 20:44:20 +02:00
|
|
|
toolchain: ${{ env.MSRV }}
|
|
|
|
- name: "install Rust nightly"
|
2023-04-15 09:46:43 +02:00
|
|
|
uses: dtolnay/rust-toolchain@nightly
|
2021-11-03 10:22:31 +01:00
|
|
|
- uses: Swatinem/rust-cache@v1
|
2022-06-27 20:44:20 +02:00
|
|
|
- name: Select minimal versions
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: update
|
|
|
|
args: -Z minimal-versions
|
|
|
|
toolchain: nightly
|
2022-07-28 19:14:31 +02:00
|
|
|
- name: Fix up Cargo.lock
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: update
|
|
|
|
args: -p crc32fast --precise 1.1.1
|
|
|
|
toolchain: nightly
|
2021-11-03 10:22:31 +01:00
|
|
|
- name: Run tests
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
2021-11-11 17:33:33 +01:00
|
|
|
args: >
|
|
|
|
-p axum
|
2021-11-17 21:00:32 +01:00
|
|
|
-p axum-extra
|
2022-04-29 18:53:41 +02:00
|
|
|
-p axum-core
|
2022-06-27 20:44:20 +02:00
|
|
|
--all-features
|
|
|
|
--all-targets
|
|
|
|
--locked
|
|
|
|
toolchain: ${{ env.MSRV }}
|
|
|
|
# the compiler errors are different on our MSRV which makes
|
2022-01-31 22:46:44 +01:00
|
|
|
# the trybuild tests in axum-macros fail, so just run the doc
|
2021-11-11 21:26:08 +01:00
|
|
|
# tests
|
2022-01-31 22:46:44 +01:00
|
|
|
- name: Run axum-macros doc tests
|
2021-11-11 21:26:08 +01:00
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: >
|
2022-01-31 22:46:44 +01:00
|
|
|
-p axum-macros
|
2021-11-11 21:26:08 +01:00
|
|
|
--doc
|
|
|
|
--all-features
|
2022-06-27 20:44:20 +02:00
|
|
|
--locked
|
|
|
|
toolchain: ${{ env.MSRV }}
|
2021-11-03 10:22:31 +01:00
|
|
|
|
2021-08-19 09:34:48 +02:00
|
|
|
test-docs:
|
|
|
|
needs: check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-01-08 16:41:59 +01:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2021-10-19 22:25:06 +02:00
|
|
|
- uses: Swatinem/rust-cache@v1
|
2021-08-19 09:34:48 +02:00
|
|
|
- name: Run doc tests
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: test
|
|
|
|
args: --all-features --doc
|
|
|
|
|
2021-06-12 20:18:21 +02:00
|
|
|
deny-check:
|
|
|
|
name: cargo-deny check
|
|
|
|
runs-on: ubuntu-latest
|
2021-11-03 12:38:48 +01:00
|
|
|
continue-on-error: ${{ matrix.checks == 'advisories' }}
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
checks:
|
|
|
|
- advisories
|
|
|
|
- bans licenses sources
|
2021-06-12 20:18:21 +02:00
|
|
|
steps:
|
2021-11-03 12:38:48 +01:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: EmbarkStudios/cargo-deny-action@v1
|
|
|
|
with:
|
|
|
|
command: check ${{ matrix.checks }}
|
|
|
|
arguments: --all-features --manifest-path axum/Cargo.toml
|
2021-12-12 15:19:30 +01:00
|
|
|
|
|
|
|
armv5te-unknown-linux-musleabi:
|
|
|
|
needs: check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-01-08 16:41:59 +01:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2021-12-12 15:19:30 +01:00
|
|
|
with:
|
|
|
|
target: armv5te-unknown-linux-musleabi
|
|
|
|
- uses: Swatinem/rust-cache@v1
|
|
|
|
- name: Check
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
env:
|
|
|
|
# Clang has native cross-compilation support
|
|
|
|
CC: clang
|
|
|
|
with:
|
|
|
|
command: check
|
2021-12-28 15:58:48 +01:00
|
|
|
args: >
|
|
|
|
--all-targets
|
|
|
|
--all-features
|
|
|
|
-p axum
|
|
|
|
-p axum-core
|
|
|
|
-p axum-extra
|
2022-01-31 22:46:44 +01:00
|
|
|
-p axum-macros
|
2021-12-28 15:58:48 +01:00
|
|
|
--target armv5te-unknown-linux-musleabi
|
2022-06-10 08:59:17 +02:00
|
|
|
|
2022-09-25 17:10:33 +02:00
|
|
|
wasm32-unknown-unknown:
|
|
|
|
needs: check
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-01-08 16:41:59 +01:00
|
|
|
- uses: dtolnay/rust-toolchain@stable
|
2022-09-25 17:10:33 +02:00
|
|
|
with:
|
|
|
|
target: wasm32-unknown-unknown
|
|
|
|
- uses: Swatinem/rust-cache@v1
|
|
|
|
- name: Check
|
|
|
|
uses: actions-rs/cargo@v1
|
|
|
|
with:
|
|
|
|
command: check
|
|
|
|
args: >
|
|
|
|
--manifest-path ./examples/simple-router-wasm/Cargo.toml
|
|
|
|
--target wasm32-unknown-unknown
|
|
|
|
|
2022-07-26 14:03:35 +02:00
|
|
|
dependencies-are-sorted:
|
2022-06-10 08:59:17 +02:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2023-04-15 09:46:43 +02:00
|
|
|
- uses: dtolnay/rust-toolchain@beta
|
2022-08-09 15:18:10 +02:00
|
|
|
- uses: Swatinem/rust-cache@v2
|
2022-06-10 08:59:17 +02:00
|
|
|
- name: Install cargo-sort
|
|
|
|
run: |
|
|
|
|
cargo install cargo-sort
|
2023-03-10 12:02:11 +01:00
|
|
|
# Work around cargo-sort not honoring workspace.exclude
|
2022-08-09 16:56:50 +02:00
|
|
|
- name: Remove non-crate folder
|
2023-03-10 12:02:11 +01:00
|
|
|
run: rm -rf examples/async-graphql
|
2022-08-09 16:56:50 +02:00
|
|
|
- name: Check dependency tables
|
2022-06-10 08:59:17 +02:00
|
|
|
run: |
|
|
|
|
cargo sort --workspace --grouped --check
|