Skip to content

Commit

Permalink
Ci for older rust (#610)
Browse files Browse the repository at this point in the history
* add ci for older rust version
  • Loading branch information
Stephan Dilly committed May 27, 2021
1 parent 224f790 commit 5933105
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
rust: [nightly, stable]
rust: [nightly, stable, '1.50']
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.rust == 'nightly' }}

Expand Down Expand Up @@ -68,13 +68,19 @@ jobs:
build-linux-musl:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
rust: [nightly, stable, '1.50']
continue-on-error: ${{ matrix.rust == 'nightly' }}
steps:
- uses: actions/checkout@master
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
toolchain: ${{ matrix.rust }}
profile: minimal
default: true
target: x86_64-unknown-linux-musl
- name: Setup MUSL
run: |
Expand Down

0 comments on commit 5933105

Please sign in to comment.