File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4949 - run : cargo fmt --all -- --check
5050 - run : cargo fmt --manifest-path migration/Cargo.toml --all -- --check
5151
52+ examples :
53+ name : Examples
54+ runs-on : ubuntu-latest
55+ strategy :
56+ fail-fast : false
57+ matrix :
58+ path : [
59+ examples/axum_example,
60+ examples/loco_example,
61+ ]
62+ steps :
63+ - uses : actions/checkout@v4
64+ - uses : dtolnay/rust-toolchain@master
65+ with :
66+ toolchain : nightly
67+ components : rustfmt
68+ - run : find ${{ matrix.path }} -type f -name 'Cargo.toml' -print0 | xargs -t -0 -I {} cargo fmt --manifest-path {} -- --check
69+ - uses : dtolnay/rust-toolchain@stable
70+ - run : find ${{ matrix.path }} -type f -name 'Cargo.toml' -print0 | xargs -t -0 -I {} cargo update --manifest-path {}
71+ - run : find ${{ matrix.path }} -type f -name 'Cargo.toml' -print0 | xargs -t -0 -I {} cargo build --manifest-path {}
72+ - run : find ${{ matrix.path }} -type f -name 'Cargo.toml' -print0 | xargs -t -0 -I {} cargo test --manifest-path {}
73+
5274 sqlite :
5375 name : SQLite
5476 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments