Skip to content

Commit

Permalink
chore: only run contract, deployment & testing jobs in nightly rust
Browse files Browse the repository at this point in the history
  • Loading branch information
mickvandijke committed Dec 20, 2023
1 parent 6087e4f commit 1735a7a
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/contract.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

strategy:
matrix:
toolchain: [stable, nightly]
toolchain: [nightly]

steps:
- id: checkout
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
toolchain: [stable, nightly]
toolchain: [nightly]

steps:
- id: checkout
Expand Down Expand Up @@ -44,7 +44,7 @@ jobs:
name: Setup Toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
toolchain: ${{ matrix.toolchain }}

- id: publish
name: Publish Crates
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

strategy:
matrix:
toolchain: [stable, nightly]
toolchain: [nightly]

steps:
- id: checkout
Expand Down Expand Up @@ -79,7 +79,7 @@ jobs:

strategy:
matrix:
toolchain: [stable, nightly]
toolchain: [nightly]

steps:
- id: checkout
Expand Down

0 comments on commit 1735a7a

Please sign in to comment.