Skip to content

Commit

Permalink
Update build_and_test_on_push.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaGuarracino authored Feb 12, 2025
1 parent 3b59f16 commit 509282b
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions .github/workflows/build_and_test_on_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,19 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Install required packages
run: sudo apt-get update && sudo apt-get install -y \
git \
bash \
cmake \
make \
g++ \
python3-dev \
autoconf \
build-essential \
libjemalloc-dev && python3 -m pip install distutils
run: |
sudo apt-get update
sudo apt-get install -y \
git \
bash \
cmake \
make \
g++ \
python3-dev \
autoconf \
build-essential \
libjemalloc-dev
python3 -m pip install distutils
- name: Init and update submodules
run: git submodule update --init --recursive
- name: Build odgi
Expand Down

0 comments on commit 509282b

Please sign in to comment.