Skip to content

Commit

Permalink
Merge pull request #497 from Appsilon/use-multiple-runners-for-main-ci
Browse files Browse the repository at this point in the history
ci: Multiple runners for the main CI.
  • Loading branch information
jakubnowicki authored Sep 11, 2023
2 parents 1bffead + a239530 commit 7c7793a
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,19 @@ permissions:
contents: read
jobs:
main:
name: Check, lint & test
runs-on: ubuntu-latest
name: Check, lint & test - ${{ matrix.config.os }} (${{ matrix.config.r }})
runs-on: ${{ matrix.config.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
config:
- {os: macOS-latest, r: 'release'}
- {os: windows-latest, r: 'release'}
- {os: ubuntu-22.04, r: 'devel'}
- {os: ubuntu-22.04, r: 'release'}
- {os: ubuntu-22.04, r: 'oldrel'}

steps:
- name: Checkout repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 7c7793a

Please sign in to comment.