Skip to content

Commit

Permalink
Load cargo path after installing rust
Browse files Browse the repository at this point in the history
  • Loading branch information
dormant-user committed Sep 1, 2024
1 parent c8eef26 commit 197bd4b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/test-runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,24 @@ jobs:
- uses: actions/checkout@v4
- name: Verify 'curl'
run: curl --version
shell: bash
- name: Verify 'git'
run: git --version
shell: bash
- name: Verify 'jq'
run: jq --version
shell: bash
- name: Verify 'python'
run: python -V
shell: bash
- name: Verify 'rust'
run: rustc --version
shell: bash
- name: Verify 'go'
run: go version
shell: bash
- name: Verify 'node'
run: |
node --version
npm --version
shell: bash
1 change: 1 addition & 0 deletions dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ RUN ln -s /usr/bin/python3.10 /usr/bin/python

# https://github.com/rust-lang/rustup/issues/297#issuecomment-444818896
RUN curl https://sh.rustup.rs -sSf | sh -s -- -y
ENV PATH="${HOME}/.cargo/bin:${PATH}"

# Download and unzip the github actions runner
RUN mkdir actions-runner && cd actions-runner \
Expand Down

0 comments on commit 197bd4b

Please sign in to comment.