Skip to content

Commit

Permalink
move install packages up top
Browse files Browse the repository at this point in the history
  • Loading branch information
ASoTNetworks committed Jul 26, 2024
1 parent 5158af6 commit 2136bcf
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/test-theta-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ jobs:
runs-on: cosmos-runner-set
steps:
# Get system info
- name: Install required packages
run: |
sudo apt update
sudo apt dist-upgrade -y
sudo apt -y install python-is-python3 python3-distutils screen curl jq wget python3-venv python3-pip net-tools
- run: ifconfig
- run: lscpu
- run: df -h
Expand All @@ -24,13 +29,6 @@ jobs:
- run: pwd
- name: mkdir ~/artifact
run: mkdir ~/artifact
- name: Update Apt
run: |
sudo apt update
sudo apt dist-upgrade -y
- name: Install required packages
run: |
sudo apt -y install python-is-python3 python3-distutils screen curl jq wget python3-venv python3-pip
- name: Check out repository code
uses: actions/checkout@v3
- name: Init Python venv
Expand Down

0 comments on commit 2136bcf

Please sign in to comment.