-
Notifications
You must be signed in to change notification settings - Fork 16
39 lines (31 loc) · 972 Bytes
/
linux.yml
File metadata and controls
39 lines (31 loc) · 972 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: CI (Linux)
on: [push, pull_request]
jobs:
build_and_test:
strategy:
fail-fast: false
matrix:
version:
- 1.88.0 # MSRV
- stable
- nightly
name: ${{ matrix.version }} - x86_64-unknown-linux-gnu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install ${{ matrix.version }}
uses: actions-rust-lang/setup-rust-toolchain@v1
with:
toolchain: ${{ matrix.version }}-x86_64-unknown-linux-gnu
- name: Run tests (neon)
timeout-minutes: 15
run: |
cargo test --all --no-default-features --features="ntex/neon"
- name: Run tests (neon-uring)
timeout-minutes: 15
run: |
cargo test --all --no-default-features --features="ntex/neon-uring"
- name: Run tests (tokio)
timeout-minutes: 15
run: |
cargo test --all --no-default-features --features="ntex/tokio"