Remove unnecessary matrix

We use a matrix with a single element, this is unnecessary.
This commit is contained in:
Tobin Harding 2022-03-19 10:24:00 +11:00
parent a8a679ed7d
commit 96685c571d
1 changed files with 1 additions and 5 deletions

View File

@ -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