Remove unnecessary matrix
We use a matrix with a single element, this is unnecessary.
This commit is contained in:
parent
a8a679ed7d
commit
96685c571d
|
@ -6,10 +6,6 @@ jobs:
|
||||||
Nightly:
|
Nightly:
|
||||||
name: Nightly - ASan + Bench
|
name: Nightly - ASan + Bench
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
strategy:
|
|
||||||
matrix:
|
|
||||||
rust:
|
|
||||||
- nightly
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout Crate
|
- name: Checkout Crate
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
|
@ -17,7 +13,7 @@ jobs:
|
||||||
uses: actions-rs/toolchain@v1
|
uses: actions-rs/toolchain@v1
|
||||||
with:
|
with:
|
||||||
profile: minimal
|
profile: minimal
|
||||||
toolchain: ${{ matrix.rust }}
|
toolchain: nightly
|
||||||
override: true
|
override: true
|
||||||
components: rust-src
|
components: rust-src
|
||||||
- name: Running address sanitizer
|
- name: Running address sanitizer
|
||||||
|
|
Loading…
Reference in New Issue