Skip to content

Commit 1735a7a

Browse files
committed
chore: only run contract, deployment & testing jobs in nightly rust
1 parent 6087e4f commit 1735a7a

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/contract.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
strategy:
1616
matrix:
17-
toolchain: [stable, nightly]
17+
toolchain: [nightly]
1818

1919
steps:
2020
- id: checkout

.github/workflows/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212

1313
strategy:
1414
matrix:
15-
toolchain: [stable, nightly]
15+
toolchain: [nightly]
1616

1717
steps:
1818
- id: checkout
@@ -44,7 +44,7 @@ jobs:
4444
name: Setup Toolchain
4545
uses: dtolnay/rust-toolchain@stable
4646
with:
47-
toolchain: stable
47+
toolchain: ${{ matrix.toolchain }}
4848

4949
- id: publish
5050
name: Publish Crates

.github/workflows/testing.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939

4040
strategy:
4141
matrix:
42-
toolchain: [stable, nightly]
42+
toolchain: [nightly]
4343

4444
steps:
4545
- id: checkout
@@ -79,7 +79,7 @@ jobs:
7979

8080
strategy:
8181
matrix:
82-
toolchain: [stable, nightly]
82+
toolchain: [nightly]
8383

8484
steps:
8585
- id: checkout

0 commit comments

Comments
 (0)