Skip to content

Commit

Permalink
Merge branch 'main' into fix-indexmap-reexport
Browse files Browse the repository at this point in the history
  • Loading branch information
ErichDonGubler authored Jun 11, 2024
2 parents 4c7d437 + 62a0f9e commit f661ff8
Showing 1 changed file with 8 additions and 12 deletions.
20 changes: 8 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,11 @@ jobs:
name: Check
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.rust != 'stable' }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust:
- stable
- beta
rust: [stable, beta]
steps:
- name: Checkout sources
uses: actions/checkout@v1
Expand All @@ -40,12 +39,11 @@ jobs:
name: Test Suite
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.rust != 'stable' }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
rust:
- stable
- beta
rust: [stable, beta]
steps:
- name: Checkout sources
uses: actions/checkout@v1
Expand Down Expand Up @@ -90,11 +88,10 @@ jobs:
name: Clippy
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.rust != 'stable' }}
strategy:
matrix:
rust:
- stable
- beta
rust: [stable, beta]
steps:
- name: Checkout sources
uses: actions/checkout@v1
Expand All @@ -116,11 +113,10 @@ jobs:
name: Documentation
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.event.pull_request.base.repo.full_name
runs-on: ubuntu-latest
continue-on-error: ${{ matrix.rust != 'stable' }}
strategy:
matrix:
rust:
- stable
- beta
rust: [stable, beta]
steps:
- name: Checkout sources
uses: actions/checkout@v1
Expand Down

0 comments on commit f661ff8

Please sign in to comment.