Move examples #232

This commit is contained in:
Chris Tsang 2021-10-09 14:38:09 +08:00
parent 98e48cf2b2
commit c24d7704d9
16 changed files with 23 additions and 1 deletions

View File

@ -171,7 +171,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
path: [async-std, tokio, actix_example, actix4_example, rocket_example]
path: [basic, actix_example, actix4_example, rocket_example]
steps:
- uses: actions/checkout@v2
@ -187,6 +187,28 @@ jobs:
args: >
--manifest-path examples/${{ matrix.path }}/Cargo.toml
issues:
name: Issues
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
path: [86]
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: actions-rs/cargo@v1
with:
command: build
args: >
--manifest-path issues/${{ matrix.path }}/Cargo.toml
sqlite:
name: SQLite
runs-on: ubuntu-20.04