Skip to content

Commit

Permalink
Optimize CI workflow configuration
Browse files Browse the repository at this point in the history
- Remove strategy matrix from CI workflow
- Set CI runs-on to ubuntu-latest for simplicity
  • Loading branch information
thekorn committed Dec 2, 2024
1 parent e8da024 commit cf13c0b
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,7 @@ concurrency:
cancel-in-progress: true
jobs:
build-test:
strategy:
fail-fast: false
matrix:
os: [macos-latest, ubuntu-latest]
runs-on: ${{matrix.os}}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand Down

0 comments on commit cf13c0b

Please sign in to comment.