From 569039734bd128158c4dd065a36810e94e322931 Mon Sep 17 00:00:00 2001 From: Tim Kuehn Date: Thu, 12 Nov 2020 12:13:10 -0800 Subject: [PATCH] Fix github actions config --- .github/workflows/main.yml | 55 -------------------------------------- 1 file changed, 55 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0b862af..8fb8b72 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,77 +31,22 @@ jobs: - uses: actions-rs/cargo@v1 with: command: test - - test: - name: Test Suite, Serde enabled - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - uses: actions-rs/cargo@v1 with: command: test args: --features serde1 - - test: - name: Test Suite, Tokio enabled - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - uses: actions-rs/cargo@v1 with: command: test args: --features tokio1 - - test: - name: Test Suite, Serde Transport enabled - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - uses: actions-rs/cargo@v1 with: command: test args: --features serde-transport - - test: - name: Test Suite, TCP enabled - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - uses: actions-rs/cargo@v1 with: command: test args: --features tcp - - test: - name: Test Suite, All Features Enabled - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: stable - override: true - uses: actions-rs/cargo@v1 with: command: test