Skip to content

Commit 1f4e248

Browse files
Merge pull request #602 from pangenome/AndreaGuarracino-patch-1
update GitHub Actions workflow to use ubuntu-latest
2 parents c865f8e + e560a30 commit 1f4e248

File tree

1 file changed

+14
-12
lines changed

1 file changed

+14
-12
lines changed

.github/workflows/build_and_test_on_push.yml

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,21 +4,23 @@ name: build and test
44

55
jobs:
66
build_and_test:
7-
runs-on: ubuntu-20.04
7+
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
1010
- name: Install required packages
11-
run: sudo apt-get update && sudo apt-get install -y
12-
git
13-
bash
14-
cmake
15-
make
16-
g++
17-
python3-dev
18-
python3-distutils
19-
autoconf
20-
build-essential
21-
libjemalloc-dev
11+
run: |
12+
sudo apt-get update
13+
sudo apt-get install -y \
14+
git \
15+
bash \
16+
cmake \
17+
make \
18+
g++ \
19+
python3-dev \
20+
python3-venv \
21+
autoconf \
22+
build-essential \
23+
libjemalloc-dev
2224
- name: Init and update submodules
2325
run: git submodule update --init --recursive
2426
- name: Build odgi

0 commit comments

Comments
 (0)