Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SignatureBeef committed Dec 28, 2024
1 parent c6f0db0 commit da9731b
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,20 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest, windows-latest, macos-15-arm64 ]
os: [
{
name: Windows,
runs-on: windows-latest,
},
{
name: Ubuntu,
runs-on: ubuntu-latest,
},
{
name: macOS Arm64,
runs-on: macos-15-arm64,
}
]
profile: [
{
name: PC,
Expand All @@ -37,9 +50,9 @@ jobs:
},
]

runs-on: ${{ matrix.os }}
runs-on: ${{ matrix.os.runs-on }}

name: ${{ matrix.profile.name }} Server
name: ${{ matrix.os.name }} ${{ matrix.profile.name }} Server

steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit da9731b

Please sign in to comment.