Skip to content

Commit e252cc9

Browse files
committed
chore: disable cd workflow for push and pull request, and run ci on macos and windows
Signed-off-by: azjezz <[email protected]>
1 parent 17e478f commit e252cc9

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/cd.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,7 @@ name: Continuous Deployment
22

33
on:
44
workflow_dispatch:
5-
pull_request:
65
push:
7-
branches:
8-
- main
96
tags:
107
- "*"
118

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,13 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [ubuntu-latest]
13+
os: [ubuntu-latest, macos-latest, windows-latest]
1414
rust: [stable, nightly]
15+
exclude:
16+
- os: windows-latest
17+
rust: nightly
18+
- os: macos-latest
19+
rust: stable
1520

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

0 commit comments

Comments
 (0)