Skip to content

Commit

Permalink
Add toolchain setup to all features test
Browse files Browse the repository at this point in the history
When splitting the workflows in c26ac6b, the all features test workflow
was left without a step to setup the Rust toolchain. This has led to
failures as the wrong toolchain can get used in some situations.
  • Loading branch information
kylewillmon committed Aug 2, 2023
1 parent ae05e29 commit 7642cd1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,11 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3

- name: Install Rust toolchain
run: |
rustup toolchain install --no-self-update stable --profile minimal
rustup default stable
- name: All Features
env:
PHYLUM_API_KEY: ${{ secrets.PHYLUM_TOKEN_STAGING }}
Expand Down

0 comments on commit 7642cd1

Please sign in to comment.