Skip to content

Commit

Permalink
added rust installation
Browse files Browse the repository at this point in the history
  • Loading branch information
rahilmansuri1 authored Jul 15, 2024
1 parent d6a9759 commit a2c364f
Showing 1 changed file with 9 additions and 12 deletions.
21 changes: 9 additions & 12 deletions .github/workflows/envTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,15 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install Rust
run: |
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
echo "$HOME/.cargo/bin" >> $GITHUB_PATH
- name: Install dependencies
run: npm install
- name: Verify Rust installation
run: rustc --version

- name: Run tests
env:
YOUR_SECRET: ${{ secrets.SECRETVALUE }}
run: node app.js
# Add more steps here as needed

0 comments on commit a2c364f

Please sign in to comment.