We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c865f8e + e560a30 commit 1f4e248Copy full SHA for 1f4e248
.github/workflows/build_and_test_on_push.yml
@@ -4,21 +4,23 @@ name: build and test
4
5
jobs:
6
build_and_test:
7
- runs-on: ubuntu-20.04
+ runs-on: ubuntu-latest
8
steps:
9
- uses: actions/checkout@v4
10
- 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
+ run: |
+ sudo apt-get update
+ sudo apt-get install -y \
+ git \
+ bash \
+ cmake \
+ make \
+ g++ \
+ python3-dev \
+ python3-venv \
+ autoconf \
22
+ build-essential \
23
+ libjemalloc-dev
24
- name: Init and update submodules
25
run: git submodule update --init --recursive
26
- name: Build odgi
0 commit comments